Interface PathIterator2ai<T extends PathElement2ai>
-
- Type Parameters:
T- the types of the path elements.
- All Superinterfaces:
Iterator<T>,PathIterator2D<T>
- All Known Implementing Classes:
Circle2ai.AbstractCirclePathIterator,Circle2ai.CirclePathIterator,Circle2ai.TransformedCirclePathIterator,MultiShape2ai.AbstractMultiShapePathIterator,MultiShape2ai.MultiShapePathIterator,MultiShape2ai.TransformedMultiShapePathIterator,Path2ai.AbstractPathIterator,Path2ai.FlatteningPathIterator,Path2ai.PathPathIterator,Path2ai.TransformedPathIterator,PathIteratorWrapper,Rectangle2ai.RectanglePathIterator,Rectangle2ai.TransformedRectanglePathIterator,Segment2ai.AbstractSegmentPathIterator,Segment2ai.SegmentPathIterator,Segment2ai.TransformedSegmentPathIterator
public interface PathIterator2ai<T extends PathElement2ai> extends PathIterator2D<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 GeomFactory2ai<T,?,?,?>getGeomFactory()Replies the factory of geometrical elements.PathIterator2ai<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.d2.PathIterator2D
getWindingRule, isCurved, isMultiParts, isPolygon, isPolyline
-
-
-
-
Method Detail
-
getGeomFactory
GeomFactory2ai<T,?,?,?> getGeomFactory()
Description copied from interface:PathIterator2DReplies the factory of geometrical elements.- Specified by:
getGeomFactoryin interfacePathIterator2D<T extends PathElement2ai>- Returns:
- the factory.
-
restartIterations
PathIterator2ai<T> restartIterations()
Description copied from interface:PathIterator2DReplies a reset instance of this iterator.The reset instance enables to restart iterations with the replied iterator.
- Specified by:
restartIterationsin interfacePathIterator2D<T extends PathElement2ai>- Returns:
- the reset iterator.
-
-