KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > awt > geom > FlatteningPathIterator

java.awt.geom
Class FlatteningPathIterator

java.lang.Object
  extended by java.awt.geom.FlatteningPathIterator
All Implemented Interfaces:
PathIterator
See Also:
Top Examples, Source Code, Shape

public int currentSegment(double[] coords)
See Also:
PathIterator.SEG_CLOSE, PathIterator.SEG_LINETO, PathIterator.SEG_MOVETO
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int currentSegment(float[] coords)
See Also:
PathIterator.SEG_CLOSE, PathIterator.SEG_LINETO, PathIterator.SEG_MOVETO
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public FlatteningPathIterator(PathIterator src,
                              double flatness)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public FlatteningPathIterator(PathIterator src,
                              double flatness,
                              int limit)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public double getFlatness()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int getRecursionLimit()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int getWindingRule()
See Also:
PathIterator.WIND_NON_ZERO, PathIterator.WIND_EVEN_ODD
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public boolean isDone()
See Also:
PathIterator
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void next()
See Also:
PathIterator
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags