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

29 lines
929 B
Java

package org.w3c.dom.svg;
public interface SVGMarkerElement extends SVGElement, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGFitToViewBox {
public static final short SVG_MARKERUNITS_STROKEWIDTH = (short) 2;
public static final short SVG_MARKERUNITS_UNKNOWN = (short) 0;
public static final short SVG_MARKERUNITS_USERSPACEONUSE = (short) 1;
public static final short SVG_MARKER_ORIENT_ANGLE = (short) 2;
public static final short SVG_MARKER_ORIENT_AUTO = (short) 1;
public static final short SVG_MARKER_ORIENT_UNKNOWN = (short) 0;
SVGAnimatedLength getMarkerHeight();
SVGAnimatedEnumeration getMarkerUnits();
SVGAnimatedLength getMarkerWidth();
SVGAnimatedAngle getOrientAngle();
SVGAnimatedEnumeration getOrientType();
SVGAnimatedLength getRefX();
SVGAnimatedLength getRefY();
void setOrientToAngle(SVGAngle sVGAngle);
void setOrientToAuto();
}