Package org.w3c.dom.svg
Interface SVGPathSegArcRel
-
- All Superinterfaces:
SVGPathSeg
public interface SVGPathSegArcRel extends SVGPathSeg
-
-
Field Summary
-
Fields inherited from interface org.w3c.dom.svg.SVGPathSeg
PATHSEG_ARC_ABS, PATHSEG_ARC_REL, PATHSEG_CLOSEPATH, PATHSEG_CURVETO_CUBIC_ABS, PATHSEG_CURVETO_CUBIC_REL, PATHSEG_CURVETO_CUBIC_SMOOTH_ABS, PATHSEG_CURVETO_CUBIC_SMOOTH_REL, PATHSEG_CURVETO_QUADRATIC_ABS, PATHSEG_CURVETO_QUADRATIC_REL, PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS, PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL, PATHSEG_LINETO_ABS, PATHSEG_LINETO_HORIZONTAL_ABS, PATHSEG_LINETO_HORIZONTAL_REL, PATHSEG_LINETO_REL, PATHSEG_LINETO_VERTICAL_ABS, PATHSEG_LINETO_VERTICAL_REL, PATHSEG_MOVETO_ABS, PATHSEG_MOVETO_REL, PATHSEG_UNKNOWN
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description floatgetAngle()booleangetLargeArcFlag()floatgetR1()floatgetR2()booleangetSweepFlag()floatgetX()floatgetY()voidsetAngle(float angle)voidsetLargeArcFlag(boolean largeArcFlag)voidsetR1(float r1)voidsetR2(float r2)voidsetSweepFlag(boolean sweepFlag)voidsetX(float x)voidsetY(float y)-
Methods inherited from interface org.w3c.dom.svg.SVGPathSeg
getPathSegType, getPathSegTypeAsLetter
-
-
-
-
Method Detail
-
getX
float getX()
-
setX
void setX(float x) throws DOMException
- Throws:
DOMException
-
getY
float getY()
-
setY
void setY(float y) throws DOMException
- Throws:
DOMException
-
getR1
float getR1()
-
setR1
void setR1(float r1) throws DOMException- Throws:
DOMException
-
getR2
float getR2()
-
setR2
void setR2(float r2) throws DOMException- Throws:
DOMException
-
getAngle
float getAngle()
-
setAngle
void setAngle(float angle) throws DOMException- Throws:
DOMException
-
getLargeArcFlag
boolean getLargeArcFlag()
-
setLargeArcFlag
void setLargeArcFlag(boolean largeArcFlag) throws DOMException- Throws:
DOMException
-
getSweepFlag
boolean getSweepFlag()
-
setSweepFlag
void setSweepFlag(boolean sweepFlag) throws DOMException- Throws:
DOMException
-
-