Interface PathIterator2afp<T extends PathElement2afp>
-
- Type Parameters:
T- the types of the path elements.
- All Superinterfaces:
Cloneable,Iterator<T>,PathIterator2D<T>
- All Known Implementing Classes:
Circle2afp.AbstractCirclePathIterator,Circle2afp.CirclePathIterator,Circle2afp.TransformedCirclePathIterator,Ellipse2afp.AbstractEllipsePathIterator,Ellipse2afp.EllipsePathIterator,Ellipse2afp.TransformedEllipsePathIterator,MultiShape2afp.AbstractMultiShapePathIterator,MultiShape2afp.MultiShapePathIterator,MultiShape2afp.TransformedMultiShapePathIterator,OrientedRectangle2afp.AbstractOrientedRectanglePathIterator,OrientedRectangle2afp.OrientedRectanglePathIterator,OrientedRectangle2afp.ProjectionToOrientedRectangleLocalCoordinateSystemPathIterator,OrientedRectangle2afp.TransformedOrientedRectanglePathIterator,Parallelogram2afp.AbstractParallelogramPathIterator,Parallelogram2afp.ParallelogramPathIterator,Parallelogram2afp.ProjectionToParallelogramLocalCoordinateSystemPathIterator,Parallelogram2afp.TransformedParallelogramPathIterator,Path2afp.AbstractPathPathIterator,Path2afp.FlatteningPathIterator,Path2afp.PathPathIterator,Path2afp.TransformedPathPathIterator,PathIteratorWrapper,Rectangle2afp.RectanglePathIterator,Rectangle2afp.TransformedRectanglePathIterator,RoundRectangle2afp.AbstractRoundRectanglePathIterator,RoundRectangle2afp.RoundRectanglePathIterator,RoundRectangle2afp.TransformedRoundRectanglePathIterator,Segment2afp.SegmentPathIterator,Triangle2afp.AbstractTrianglePathIterator,Triangle2afp.TransformedTrianglePathIterator,Triangle2afp.TrianglePathIterator
public interface PathIterator2afp<T extends PathElement2afp> extends PathIterator2D<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 GeomFactory2afp<T,?,?,?>getGeomFactory()Replies the factory of geometrical elements.PathIterator2afp<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
GeomFactory2afp<T,?,?,?> getGeomFactory()
Description copied from interface:PathIterator2DReplies the factory of geometrical elements.- Specified by:
getGeomFactoryin interfacePathIterator2D<T extends PathElement2afp>- Returns:
- the factory.
-
restartIterations
PathIterator2afp<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 PathElement2afp>- Returns:
- the reset iterator.
-
-