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

34 lines
622 B
Java

package org.w3c.dom.svg;
import org.w3c.dom.DOMException;
public interface SVGPathSegArcAbs extends SVGPathSeg {
float getAngle();
boolean getLargeArcFlag();
float getR1();
float getR2();
boolean getSweepFlag();
float getX();
float getY();
void setAngle(float f) throws DOMException;
void setLargeArcFlag(boolean z) throws DOMException;
void setR1(float f) throws DOMException;
void setR2(float f) throws DOMException;
void setSweepFlag(boolean z) throws DOMException;
void setX(float f) throws DOMException;
void setY(float f) throws DOMException;
}