Interface PathIterator3ai<T extends PathElement3ai>
-
- Type Parameters:
T- the types of the path elements.
- All Superinterfaces:
Iterator<T>,PathIterator3D<T>
- All Known Implementing Classes:
MultiShape3ai.AbstractMultiShapePathIterator,MultiShape3ai.MultiShapePathIterator,MultiShape3ai.TransformedMultiShapePathIterator,Path3ai.AbstractPathIterator,Path3ai.FlatteningPathIterator,Path3ai.PathPathIterator,Path3ai.TransformedPathIterator,PathIteratorWrapper,RectangularPrism3ai.RectanglePathIterator,RectangularPrism3ai.TransformedRectanglePathIterator,Segment3ai.AbstractSegmentPathIterator,Segment3ai.SegmentPathIterator,Segment3ai.TransformedSegmentPathIterator,Sphere3ai.AbstractCirclePathIterator,Sphere3ai.SpherePathIterator,Sphere3ai.TransformedCirclePathIterator
public interface PathIterator3ai<T extends PathElement3ai> extends PathIterator3D<T>
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 GeomFactory3ai<T,?,?,?>getGeomFactory()Replies the factory of geometrical elements.PathIterator3ai<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
GeomFactory3ai<T,?,?,?> getGeomFactory()
Replies the factory of geometrical elements.- Returns:
- the factory.
-
restartIterations
PathIterator3ai<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 PathElement3ai>- Returns:
- the reset iterator.
-
-