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.ObjectThis is the element of a path and contains instructions for rendering a portion of the path
-
-
Field Summary
Fields Modifier and Type Field Description booleanisRelative
-
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 voidappendPath(java.awt.geom.GeneralPath path, BuildHistory hist)abstract intgetNumKnotsAdded()
-
-
-
Method Detail
-
appendPath
public abstract void appendPath(java.awt.geom.GeneralPath path, BuildHistory hist)
-
getNumKnotsAdded
public abstract int getNumKnotsAdded()
-
-