Example usage for Java java.awt.geom PathIterator fields, constructors, methods, implement or subclass
The text is from its open source code.
int | WIND_EVEN_ODD The winding rule constant for specifying an even-odd rule for determining the interior of a path. |
int | WIND_NON_ZERO The winding rule constant for specifying a non-zero rule for determining the interior of a path. |
int | SEG_MOVETO The segment type constant for a point that specifies the starting location for a new subpath. |
int | SEG_LINETO The segment type constant for a point that specifies the end point of a line to be drawn from the most recently specified point. |
int | SEG_QUADTO The segment type constant for the pair of points that specify a quadratic parametric curve to be drawn from the most recently specified point. |
int | SEG_CUBICTO The segment type constant for the set of 3 points that specify a cubic parametric curve to be drawn from the most recently specified point. |
int | SEG_CLOSE The segment type constant that specifies that the preceding subpath should be closed by appending a line segment back to the point corresponding to the most recent SEG_MOVETO. |
int | currentSegment(float[] coords) Returns the coordinates and type of the current path segment in the iteration. |
int | currentSegment(double[] coords) Returns the coordinates and type of the current path segment in the iteration. |
int | getWindingRule() Returns the winding rule for determining the interior of the path. |
boolean | isDone() Tests if the iteration is complete. |
void | next() Moves the iterator to the next segment of the path forwards along the primary direction of traversal as long as there are more points in that direction. |