summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGFEGaussianBlurElement.java
blob: af1c659c8d9690d33bbd45a129e0336dd7cf8fe4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12

package org.w3c.dom.svg;

public interface SVGFEGaussianBlurElement extends 
               SVGElement,
               SVGFilterPrimitiveStandardAttributes {
  public SVGAnimatedString getIn1( );
  public SVGAnimatedNumber getStdDeviationX( );
  public SVGAnimatedNumber getStdDeviationY( );

  public void setStdDeviation ( float stdDeviationX, float stdDeviationY );
}