Searched refs:flatness (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DFlatteningPathIterator.java43 double squareflat; // Square of the flatness parameter
91 * @param flatness the maximum allowable distance between the
94 public FlatteningPathIterator(PathIterator src, double flatness) { argument
95 this(src, flatness, 10);
104 * without measuring against the <code>flatness</code> parameter.
108 * @param flatness the maximum allowable distance between the
113 * <code>flatness</code> or <code>limit</code>
116 public FlatteningPathIterator(PathIterator src, double flatness, argument
118 if (flatness < 0.0) {
119 throw new IllegalArgumentException("flatness mus
[all...]
H A DRectangularShape.java361 * by the <code>flatness</code> parameter, which specifies the
370 * @param flatness the maximum distance that the line segments used to
377 public PathIterator getPathIterator(AffineTransform at, double flatness) { argument
378 return new FlatteningPathIterator(getPathIterator(at), flatness);
H A DArea.java646 * @param flatness the maximum amount that the control points
654 public PathIterator getPathIterator(AffineTransform at, double flatness) { argument
655 return new FlatteningPathIterator(getPathIterator(at), flatness);
H A DQuadCurve2D.java614 * Returns the square of the flatness, or maximum distance of a
624 * @return the square of the flatness of the quadratic curve
635 * Returns the flatness, or maximum distance of a
645 * @return the flatness of the quadratic curve defined by the
656 * Returns the square of the flatness, or maximum distance of a
663 * @return the flatness of the quadratic curve that is defined by the
674 * Returns the flatness, or maximum distance of a
681 * @return the flatness of a quadratic curve defined by the
692 * Returns the square of the flatness, or maximum distance of a
695 * @return the square of the flatness o
1380 getPathIterator(AffineTransform at, double flatness) argument
[all...]
H A DLine2D.java1099 * @param flatness the maximum amount that the control points for a
1108 public PathIterator getPathIterator(AffineTransform at, double flatness) { argument
H A DRectangle2D.java869 * flat, the <code>flatness</code> parameter is ignored.
878 * @param flatness the maximum distance that the line segments used to
881 * the <code>flatness</code> parameter is ignored.
887 public PathIterator getPathIterator(AffineTransform at, double flatness) { argument
H A DCubicCurve2D.java784 * Returns the square of the flatness of the cubic curve specified
785 * by the indicated control points. The flatness is the maximum distance
804 * @return the square of the flatness of the {@code CubicCurve2D}
818 * Returns the flatness of the cubic curve specified
819 * by the indicated control points. The flatness is the maximum distance
838 * @return the flatness of the {@code CubicCurve2D}
851 * Returns the square of the flatness of the cubic curve specified
853 * indicated index. The flatness is the maximum distance
858 * @return the square of the flatness of the <code>CubicCurve2D</code>
871 * Returns the flatness o
1555 getPathIterator(AffineTransform at, double flatness) argument
[all...]
H A DPath2D.java2346 double flatness)
2348 return new FlatteningPathIterator(getPathIterator(at), flatness);
2345 getPathIterator(AffineTransform at, double flatness) argument
/openjdk7/jdk/src/share/classes/java/awt/
H A DShape.java385 * by the <code>flatness</code> parameter, which specifies the
406 * @param flatness the maximum distance that the line segments used to
413 public PathIterator getPathIterator(AffineTransform at, double flatness); argument
H A DPolygon.java554 * Since polygons are already flat, the <code>flatness</code> parameter
561 * @param flatness the maximum amount that the control points
565 * <code>flatness</code> parameter is ignored.
570 public PathIterator getPathIterator(AffineTransform at, double flatness) { argument
/openjdk7/jdk/src/share/classes/sun/font/
H A DDelegatingShape.java83 public PathIterator getPathIterator(AffineTransform at, double flatness) { argument
84 return delegate.getPathIterator(at, flatness);

Completed in 57 milliseconds