Package org.evoludo.geom
Class Path2D.Iterator
Object
Iterator
- All Implemented Interfaces:
PathIterator
- Enclosing class:
Path2D
Adapted from java.awt.geom.PathIterator, merged with Path2D Iterator and
CopyIterator. Constants moved to Path2D and made more GWT friendly.
-
Field Summary
FieldsModifier and TypeFieldDescription(package private) static final int[]
(package private) double[]
(package private) Path2D
(package private) int
(package private) int
Fields inherited from interface PathIterator
SEG_CLOSE, SEG_CUBICTO, SEG_LINETO, SEG_MOVETO, SEG_QUADTO, WIND_EVEN_ODD, WIND_NON_ZERO
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionint
currentSegment
(double[] coords) Returns the coordinates and type of the current path segment in the iteration.int
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.
-
Field Details
-
typeIdx
int typeIdx -
pointIdx
int pointIdx -
path
Path2D path -
curvecoords
static final int[] curvecoords -
doubleCoords
double[] doubleCoords
-
-
Constructor Details
-
Method Details
-
currentSegment
public int currentSegment(double[] coords) Returns the coordinates and type of the current path segment in the iteration. The return value is the path-segment type: SEG_MOVETO, SEG_LINETO, SEG_QUADTO, SEG_CUBICTO, or SEG_CLOSE. A double array of length 6 must be passed in and can be used to store the coordinates of the point(s). Each point is stored as a pair of double x,y coordinates. SEG_MOVETO and SEG_LINETO types returns one point, SEG_QUADTO returns two points, SEG_CUBICTO returns 3 points and SEG_CLOSE does not return any points.- Specified by:
currentSegment
in interfacePathIterator
- Parameters:
coords
- an array that holds the data returned from this method- Returns:
- the path-segment type of the current path segment.
- See Also:
-
getWindingRule
public int getWindingRule()Returns the winding rule for determining the interior of the path.- Specified by:
getWindingRule
in interfacePathIterator
- Returns:
- the winding rule.
- See Also:
-
isDone
public boolean isDone()Tests if the iteration is complete.- Specified by:
isDone
in interfacePathIterator
- Returns:
true
if all the segments have been read;false
otherwise.
-
next
public 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.- Specified by:
next
in interfacePathIterator
-