Class PathIterator
- java.lang.Object
-
- net.sourceforge.plantuml.awt.geom.PathIterator
-
public class PathIterator extends Object
-
-
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
-
Constructor Summary
Constructors Constructor Description PathIterator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
currentSegment(double[] coord)
int
getWindingRule()
boolean
isDone()
void
next()
-
-
-
Field Detail
-
WIND_EVEN_ODD
public static final int WIND_EVEN_ODD
- See Also:
- Constant Field Values
-
WIND_NON_ZERO
public static final int WIND_NON_ZERO
- See Also:
- Constant Field Values
-
SEG_MOVETO
public static final int SEG_MOVETO
- See Also:
- Constant Field Values
-
SEG_LINETO
public static final int SEG_LINETO
- See Also:
- Constant Field Values
-
SEG_CUBICTO
public static final int SEG_CUBICTO
- See Also:
- Constant Field Values
-
SEG_QUADTO
public static final int SEG_QUADTO
- See Also:
- Constant Field Values
-
SEG_CLOSE
public static final int SEG_CLOSE
- See Also:
- Constant Field Values
-
-