swingwt.awt.geom
Interface PathIterator


public interface PathIterator


Field Summary
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
 int currentSegment(double[] coords)
           
 int currentSegment(float[] coords)
           
 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_QUADTO

public static final int SEG_QUADTO
See Also:
Constant Field Values

SEG_CUBICTO

public static final int SEG_CUBICTO
See Also:
Constant Field Values

SEG_CLOSE

public static final int SEG_CLOSE
See Also:
Constant Field Values
Method Detail

getWindingRule

public int getWindingRule()

isDone

public boolean isDone()

next

public void next()

currentSegment

public int currentSegment(float[] coords)

currentSegment

public int currentSegment(double[] coords)