| Modifier and Type | Class and Description |
|---|---|
class |
ClosePath
An operator that completes a vector shape, drawing a line from the first point to the last point.
|
class |
CurveTo
The curveto operator is used to draw a Bezier curve.
|
class |
CurveToV
A curveto operator where the first control point matches the beginning.
|
class |
CurveToY
A curveto operator where the second control point matches the end point.
|
class |
LineTo
A lineto operator, which draws a straight line.
|
class |
MoveTo
An operator that creates a path by moving to a new current position.
|
class |
RectSegment
A rectangle path operator.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.List<Segment> |
Path.getSegments()
Get the segments of the path.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Path.setSegments(java.util.List<Segment> segments)
Set the segments of the path.
|