Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Interface
java.awt.geom.PathIterator

Uses of PathIterator in java.awt.geom
 

Classes in java.awt.geom that implement PathIterator
(package private) static class Arc2D.ArcIterator
          This class is used to iterate over an arc.
private  class Area.AreaIterator
          Private pathiterator object.
 class FlatteningPathIterator
          A PathIterator for approximating curved path segments by sequences of straight lines.
private static class GeneralPath.GeneralPathIterator
          A PathIterator that iterates over the segments of a GeneralPath.
 

Fields in java.awt.geom declared as PathIterator
private  PathIterator FlatteningPathIterator.srcIter
          The PathIterator whose curved segments are being approximated.
 

Methods in java.awt.geom that return PathIterator
 PathIterator RectangularShape.getPathIterator(AffineTransform at, double flatness)
          Return an iterator along the shape boundary.
 PathIterator Rectangle2D.getPathIterator(AffineTransform at)
          Return an iterator along the shape boundary.
 PathIterator Rectangle2D.getPathIterator(AffineTransform at, double flatness)
          Return an iterator along the shape boundary.
 PathIterator GeneralPath.getPathIterator(AffineTransform at)
          Creates a PathIterator for iterating along the segments of the path.
 PathIterator GeneralPath.getPathIterator(AffineTransform at, double flatness)
          Creates a new FlatteningPathIterator for the path
 PathIterator RoundRectangle2D.getPathIterator(AffineTransform at)
          Return a new path iterator which iterates over this rectangle.
 PathIterator QuadCurve2D.getPathIterator(AffineTransform at)
           
 PathIterator QuadCurve2D.getPathIterator(AffineTransform at, double flatness)
           
 PathIterator Line2D.getPathIterator(AffineTransform at)
          Return a path iterator, possibly applying a transform on the result.
 PathIterator Line2D.getPathIterator(AffineTransform at, double flatness)
          Return a flat path iterator, possibly applying a transform on the result.
 PathIterator Ellipse2D.getPathIterator(AffineTransform at)
          Returns a PathIterator object corresponding to the ellipse.
 PathIterator CubicCurve2D.getPathIterator(AffineTransform at)
           
 PathIterator CubicCurve2D.getPathIterator(AffineTransform at, double flatness)
           
 PathIterator Area.getPathIterator(AffineTransform at)
          Returns a PathIterator object defining the contour of this Area, transformed by at.
 PathIterator Area.getPathIterator(AffineTransform at, double flatness)
          Returns a flattened PathIterator object defining the contour of this Area, transformed by at and with a defined flatness.
 PathIterator Arc2D.getPathIterator(AffineTransform at)
          Returns an iterator over this arc, with an optional transformation.
 

Methods in java.awt.geom with parameters of type PathIterator
 void GeneralPath.append(PathIterator iter, boolean connect)
          Appends the segments of a PathIterator to this GeneralPath.
 

Constructors in java.awt.geom with parameters of type PathIterator
FlatteningPathIterator(PathIterator src, double flatness)
          Constructs a new PathIterator for approximating an input PathIterator with straight lines.
FlatteningPathIterator(PathIterator src, double flatness, int limit)
          Constructs a new PathIterator for approximating an input PathIterator with straight lines.