Package com.itextpdf.awt.geom
Interface PathIterator
-
- All Known Implementing Classes:
CubicCurve2D.Iterator,FlatteningPathIterator,GeneralPath.Iterator,Line2D.Iterator,QuadCurve2D.Iterator,Rectangle2D.Iterator
public interface PathIterator
-
-
Field Summary
Fields Modifier and Type Field Description static intSEG_CLOSEstatic intSEG_CUBICTOstatic intSEG_LINETOstatic intSEG_MOVETOstatic intSEG_QUADTOstatic intWIND_EVEN_ODDstatic intWIND_NON_ZERO
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intcurrentSegment(double[] coords)intcurrentSegment(float[] coords)intgetWindingRule()booleanisDone()voidnext()
-
-
-
Field Detail
-
WIND_EVEN_ODD
static final int WIND_EVEN_ODD
- See Also:
- Constant Field Values
-
WIND_NON_ZERO
static final int WIND_NON_ZERO
- See Also:
- Constant Field Values
-
SEG_MOVETO
static final int SEG_MOVETO
- See Also:
- Constant Field Values
-
SEG_LINETO
static final int SEG_LINETO
- See Also:
- Constant Field Values
-
SEG_QUADTO
static final int SEG_QUADTO
- See Also:
- Constant Field Values
-
SEG_CUBICTO
static final int SEG_CUBICTO
- See Also:
- Constant Field Values
-
SEG_CLOSE
static final int SEG_CLOSE
- See Also:
- Constant Field Values
-
-