Searched refs:PathIterator (Results 1 – 4 of 4) sorted by relevance
4 import java.awt.geom.PathIterator;33 public CachedPathIteratorFactory(PathIterator iterator) { in CachedPathIteratorFactory()68 case PathIterator.SEG_CUBICTO: in CachedPathIteratorFactory()80 case PathIterator.SEG_QUADTO: in CachedPathIteratorFactory()90 case PathIterator.SEG_CLOSE: in CachedPathIteratorFactory()98 mTypes[i] = PathIterator.SEG_LINETO; in CachedPathIteratorFactory()102 case PathIterator.SEG_MOVETO: in CachedPathIteratorFactory()107 case PathIterator.SEG_LINETO: in CachedPathIteratorFactory()192 case PathIterator.SEG_QUADTO: in getNumberOfPoints()194 case PathIterator.SEG_CUBICTO: in getNumberOfPoints()[all …]
21 import java.awt.geom.PathIterator;116 PathIterator iterator = mPath.getPathIterator(null, acceptableError); in approximate()126 if (previousPoint != null && type != PathIterator.SEG_MOVETO) { in approximate()295 for (PathIterator it = mPath.getPathIterator(null); !it.isDone(); it.next()) { in isEmpty()556 PathIterator iterator = mPath.getPathIterator(new AffineTransform(0, 0, dx, 0, 0, dy)); in offset()578 PathIterator iterator = mPath.getPathIterator(shadowMatrix.getAffineTransform()); in transform()
4 import java.awt.geom.PathIterator;269 public PathIterator getPathIterator(final AffineTransform at) { in getPathIterator()270 return new PathIterator() { in getPathIterator()
248 TEST(Support, PathIterator) { in TEST() argument