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

31 lines
831 B
Java

package org.w3c.dom.svg;
public interface SVGFEConvolveMatrixElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
public static final short SVG_EDGEMODE_DUPLICATE = (short) 1;
public static final short SVG_EDGEMODE_NONE = (short) 3;
public static final short SVG_EDGEMODE_UNKNOWN = (short) 0;
public static final short SVG_EDGEMODE_WRAP = (short) 2;
SVGAnimatedNumber getBias();
SVGAnimatedNumber getDivisor();
SVGAnimatedEnumeration getEdgeMode();
SVGAnimatedNumberList getKernelMatrix();
SVGAnimatedNumber getKernelUnitLengthX();
SVGAnimatedNumber getKernelUnitLengthY();
SVGAnimatedInteger getOrderX();
SVGAnimatedInteger getOrderY();
SVGAnimatedBoolean getPreserveAlpha();
SVGAnimatedInteger getTargetX();
SVGAnimatedInteger getTargetY();
}