Package | Description |
---|---|
com.hfg.svg | |
com.hfg.svg.path |
Modifier and Type | Method and Description |
---|---|
List<SvgPathCmd> |
SvgPath.getPathCommands() |
Modifier and Type | Method and Description |
---|---|
SvgPath |
SvgPath.addPathCommand(SvgPathCmd inValue) |
Modifier and Type | Class and Description |
---|---|
class |
SvgPathClosePathCmd
Object representation of an SVG (Scalable Vector Graphics) path closePath ('z') command.
|
class |
SvgPathCurveToCmd
Object representation of an SVG (Scalable Vector Graphics) path curveTo ('C' or 'c') command.
|
class |
SvgPathEllipticalArcCmd
Object representation of an SVG (Scalable Vector Graphics) path elliptical arc ('A' or 'a') command.
|
class |
SvgPathHorizLineToCmd
Object representation of an SVG (Scalable Vector Graphics) path horizontal lineTo ('H' or 'h') command.
|
class |
SvgPathLineToCmd
Object representation of an SVG (Scalable Vector Graphics) path lineTo ('L' or 'l') command.
|
class |
SvgPathMoveToCmd
Object representation of an SVG (Scalable Vector Graphics) path moveTo ('M' or 'm') command.
|
class |
SvgPathQuadCurveToCmd
Object representation of an SVG (Scalable Vector Graphics) path quadratic curveTo ('Q' or 'q') command.
|
class |
SvgPathSmoothCurveToCmd
Object representation of an SVG (Scalable Vector Graphics) path smooth curveTo ('S' or 's') command.
|
class |
SvgPathSmoothQuadCurveToCmd
Object representation of an SVG (Scalable Vector Graphics) path smooth quadratic curveTo ('T' or 't') command.
|
class |
SvgPathVertLineToCmd
Object representation of an SVG (Scalable Vector Graphics) path vertical lineTo ('V' or 'v') command.
|
Modifier and Type | Method and Description |
---|---|
static SvgPathCmd |
SvgPathCmd.allocate(char inCmdChar) |
SvgPathCmd |
SvgPathCmd.setIsRelative(boolean inValue) |
protected SvgPathCmd |
SvgPathCmd.setNumSteps(int inValue) |
SvgPathCmd |
SvgPathCmd.setRawNumbers(List<Float> inValue) |
SvgPathCmd |
SvgPathCmd.setStartingPoint(Point2D.Float inValue) |
jataylor@hairyfatguy.com