niagara-ax/decompiled/org/w3c/dom/svg/SVGFEMorphologyElement.java
2026-03-17 13:31:18 -07:00

16 lines
499 B
Java

package org.w3c.dom.svg;
public interface SVGFEMorphologyElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
public static final short SVG_MORPHOLOGY_OPERATOR_DILATE = (short) 2;
public static final short SVG_MORPHOLOGY_OPERATOR_ERODE = (short) 1;
public static final short SVG_MORPHOLOGY_OPERATOR_UNKNOWN = (short) 0;
SVGAnimatedString getIn1();
SVGAnimatedEnumeration getOperator();
SVGAnimatedNumber getRadiusX();
SVGAnimatedNumber getRadiusY();
}