| java.lang.Object com.lowagie.text.pdf.internal.PolylineShapeIterator
PolylineShapeIterator | public class PolylineShapeIterator implements PathIterator(Code) | | PathIterator for PolylineShape.
This class was originally written by wil - amristar.com.au
and integrated into iText by Bruno.
|
Field Summary | |
protected AffineTransform | affine an affine transformation to be performed on the polyline. | protected int | index the index of the current segment in the iterator. | protected PolylineShape | poly The polyline over which we are going to iterate. |
Method Summary | |
public int | currentSegment(double[] coords) Returns the coordinates and type of the current path segment in
the iteration. | public int | currentSegment(float[] coords) Returns the coordinates and type of the current path segment in
the iteration. | public int | getWindingRule() Return the winding rule for determining the insideness of the
path. | public boolean | isDone() Tests if there are more points to read. | 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. |
index | protected int index(Code) | | the index of the current segment in the iterator.
|
next | public void next()(Code) | | 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.
See Also: java.awt.geom.PathIterator.next |
|
|