12 lines
293 B
Java
12 lines
293 B
Java
package org.w3c.dom.svg;
|
|
|
|
public interface SVGFEGaussianBlurElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
|
SVGAnimatedString getIn1();
|
|
|
|
SVGAnimatedNumber getStdDeviationX();
|
|
|
|
SVGAnimatedNumber getStdDeviationY();
|
|
|
|
void setStdDeviation(float f, float f2);
|
|
}
|