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 int
SEG_CLOSE
static int
SEG_CUBICTO
static int
SEG_LINETO
static int
SEG_MOVETO
static int
SEG_QUADTO
static int
WIND_EVEN_ODD
static int
WIND_NON_ZERO
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
currentSegment(double[] coords)
int
currentSegment(float[] coords)
int
getWindingRule()
boolean
isDone()
void
next()
-
-
-
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
-
-