Package com.kitfox.svg.pathcmd
Class PathCommand
- java.lang.Object
-
- com.kitfox.svg.pathcmd.PathCommand
-
- Direct Known Subclasses:
Arc
,Cubic
,CubicSmooth
,Horizontal
,LineTo
,MoveTo
,Quadratic
,QuadraticSmooth
,Terminal
,Vertical
public abstract class PathCommand extends java.lang.Object
This is the element of a path and contains instructions for rendering a portion of the path
-
-
Field Summary
Fields Modifier and Type Field Description boolean
isRelative
-
Constructor Summary
Constructors Constructor Description PathCommand()
Creates a new instance of PathCommandPathCommand(boolean isRelative)
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract void
appendPath(java.awt.geom.GeneralPath path, BuildHistory hist)
abstract int
getNumKnotsAdded()
-
-
-
Method Detail
-
appendPath
public abstract void appendPath(java.awt.geom.GeneralPath path, BuildHistory hist)
-
getNumKnotsAdded
public abstract int getNumKnotsAdded()
-
-