Modifier and Type | Field and Description |
---|---|
pack-priv double | |
pack-priv int | |
pack-priv double | |
pack-priv double | |
pack-priv double | |
pack-priv int | |
pack-priv int | |
pack-priv BaseTransform | |
pack-priv double | |
pack-priv double | |
pack-priv double |
Access | Constructor and Description |
---|---|
pack-priv |
Modifier and Type | Method and Description |
---|---|
private static double | |
public int | currentSegment(float[]
an array that holds the data returned from
this method coords)Implements com. Returns the coordinates and type of the current path segment in the iteration. |
public int | getWindingRule()
Implements com. Return the winding rule for determining the insideness of the path. |
public boolean | Returns: true if there are more points to readImplements com. Tests if there are more points to read. |
public void | next()
Implements com. 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. |
angStRad | back to summary |
---|---|
pack-priv double angStRad |
arcSegs | back to summary |
---|---|
pack-priv int arcSegs |
cv | back to summary |
---|---|
pack-priv double cv |
h | back to summary |
---|---|
pack-priv double h |
increment | back to summary |
---|---|
pack-priv double increment |
index | back to summary |
---|---|
pack-priv int index |
lineSegs | back to summary |
---|---|
pack-priv int lineSegs |
transform | back to summary |
---|---|
pack-priv BaseTransform transform |
w | back to summary |
---|---|
pack-priv double w |
x | back to summary |
---|---|
pack-priv double x |
y | back to summary |
---|---|
pack-priv double y |
ArcIterator | back to summary |
---|---|
pack-priv ArcIterator(Arc2D a, BaseTransform at) |
btan | back to summary |
---|---|
private static double btan(double increment) |
currentSegment | back to summary |
---|---|
public int currentSegment(float[] coords) Implements com. 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 float array of length 6 must be passed in and may be used to store the coordinates of the point(s). Each point is stored as a pair of float x,y coordinates. SEG_MOVETO and SEG_LINETO types will return one point, SEG_QUADTO will return two points, SEG_CUBICTO will return 3 points and SEG_CLOSE will not return any points.
|
getWindingRule | back to summary |
---|---|
public int getWindingRule() Implements com. Return the winding rule for determining the insideness of the path.
|
isDone | back to summary |
---|---|
public boolean isDone() Implements com. Tests if there are more points to read.
|
next | back to summary |
---|---|
public void next() Implements com. 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.
|