public class Line3DIterator extends java.lang.Object implements java.util.Iterator<Point3D>
Constructor and Description |
---|
Line3DIterator(Line3D line)
Create the Line3D Iterator.
|
Line3DIterator(Line3D line,
double step)
Create the Line3D Iterator.
|
Line3DIterator(Line3D line,
double step,
boolean forceLastPoint)
Create the Line3D Iterator.
|
public Line3DIterator(Line3D line, double step, boolean forceLastPoint)
line
- the lien we want to iterate pointsstep
- step between each point (default = 1d)forceLastPoint
- set to true if you want the last point to match the end line positionpublic Line3DIterator(Line3D line, double step)
line
- the lien we want to iterate pointsstep
- step between each point (default = 1d)forceLastPoint
- set to true if you want the last point to match the end line positionpublic Line3DIterator(Line3D line)
line
- the lien we want to iterate points