Interface PathIterator3afp<T extends PathElement3afp>
-
- Type Parameters:
T- the types of the path elements.
- All Superinterfaces:
Cloneable,Iterator<T>,PathIterator3D<T>
- All Known Implementing Classes:
MultiShape3afp.AbstractMultiShapePathIterator,MultiShape3afp.MultiShapePathIterator,MultiShape3afp.TransformedMultiShapePathIterator,Path3afp.AbstractPathPathIterator,Path3afp.FlatteningPathIterator,Path3afp.PathPathIterator,Path3afp.TransformedPathPathIterator,PathIteratorWrapper,RectangularPrism3afp.RectanglePathIterator,RectangularPrism3afp.TransformedRectanglePathIterator,Segment3afp.SegmentPathIterator,Sphere3afp.AbstractSpherePathIterator,Sphere3afp.SpherePathIterator,Sphere3afp.TransformedCirclePathIterator
public interface PathIterator3afp<T extends PathElement3afp> extends PathIterator3D<T>, Cloneable
This interface describes an iterator on path elements.- Since:
- 13.0
- Version:
- 17.0 2020-01-04 14:41:43
- Author:
- Stéphane GALLAND
- Maven Group Id:
- org.arakhne.afc.core
- Maven Artifact Id:
- mathgeom
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GeomFactory3afp<T,?,?,?>getGeomFactory()Replies the factory of geometrical elements.PathIterator3afp<T>restartIterations()Replies a reset instance of this iterator.-
Methods inherited from interface java.util.Iterator
forEachRemaining, hasNext, next, remove
-
Methods inherited from interface org.arakhne.afc.math.geometry.d3.PathIterator3D
getWindingRule, isCurved, isMultiParts, isPolygon, isPolyline
-
-
-
-
Method Detail
-
getGeomFactory
GeomFactory3afp<T,?,?,?> getGeomFactory()
Replies the factory of geometrical elements.- Returns:
- the factory.
-
restartIterations
PathIterator3afp<T> restartIterations()
Description copied from interface:PathIterator3DReplies a reset instance of this iterator.The reset instance enables to restart iterations with the replied iterator.
- Specified by:
restartIterationsin interfacePathIterator3D<T extends PathElement3afp>- Returns:
- the reset iterator.
-
-