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

20 lines
626 B
Java

package org.w3c.dom.svg;
public interface SVGFEDisplacementMapElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
public static final short SVG_CHANNEL_A = (short) 4;
public static final short SVG_CHANNEL_B = (short) 3;
public static final short SVG_CHANNEL_G = (short) 2;
public static final short SVG_CHANNEL_R = (short) 1;
public static final short SVG_CHANNEL_UNKNOWN = (short) 0;
SVGAnimatedString getIn1();
SVGAnimatedString getIn2();
SVGAnimatedNumber getScale();
SVGAnimatedEnumeration getXChannelSelector();
SVGAnimatedEnumeration getYChannelSelector();
}