|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.awt.geom.GeneralPathIterator
This class represents the iterator for General Paths.
It can be used to retrieve all of the elements in a GeneralPath.
The GeneralPath.getPathIterator(java.awt.geom.AffineTransform)
method is used to create a
GeneralPathIterator for a particular GeneralPath.
The iterator can be used to iterator the path only once.
Subsequent iterations require a new iterator.
GeneralPath| Field Summary | |
(package private) AffineTransform |
affine
|
private static int[] |
curvesize
|
(package private) GeneralPath |
path
|
(package private) int |
pointIdx
|
(package private) int |
typeIdx
|
| Fields inherited from interface java.awt.geom.PathIterator |
SEG_CLOSE, SEG_CUBICTO, SEG_LINETO, SEG_MOVETO, SEG_QUADTO, WIND_EVEN_ODD, WIND_NON_ZERO |
| Constructor Summary | |
(package private) |
GeneralPathIterator(GeneralPath path)
Constructs an iterator given a GeneralPath. |
(package private) |
GeneralPathIterator(GeneralPath path,
AffineTransform at)
Constructs an iterator given a GeneralPath and an optional AffineTransform. |
| Method Summary | |
int |
currentSegment(double[] coords)
Returns the coordinates and type of the current path segment in the iteration. |
int |
currentSegment(float[] coords)
Returns the coordinates and type of the current path segment in the iteration. |
int |
getWindingRule()
Return the winding rule for determining the interior of the path. |
boolean |
isDone()
Tests if there are more points to read. |
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. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
int typeIdx
int pointIdx
GeneralPath path
AffineTransform affine
private static final int[] curvesize
| Constructor Detail |
GeneralPathIterator(GeneralPath path)
GeneralPath.getPathIterator(java.awt.geom.AffineTransform)
GeneralPathIterator(GeneralPath path,
AffineTransform at)
GeneralPath.getPathIterator(java.awt.geom.AffineTransform)| Method Detail |
public int getWindingRule()
getWindingRule in interface PathIteratorPathIterator.WIND_EVEN_ODD,
PathIterator.WIND_NON_ZEROpublic boolean isDone()
isDone in interface PathIteratorpublic void next()
next in interface PathIteratorpublic int currentSegment(float[] coords)
currentSegment in interface PathIteratorcoords - an array that holds the data returned from
this method
PathIterator.SEG_MOVETO,
PathIterator.SEG_LINETO,
PathIterator.SEG_QUADTO,
PathIterator.SEG_CUBICTO,
PathIterator.SEG_CLOSEpublic int currentSegment(double[] coords)
currentSegment in interface PathIteratorcoords - an array that holds the data returned from
this method
PathIterator.SEG_MOVETO,
PathIterator.SEG_LINETO,
PathIterator.SEG_QUADTO,
PathIterator.SEG_CUBICTO,
PathIterator.SEG_CLOSE
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||