Searched refs:cubic (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DCubicIterator.java31 * A utility class to iterate over the path segments of a cubic curve
37 CubicCurve2D cubic; field in class:CubicIterator
42 this.cubic = q;
93 throw new NoSuchElementException("cubic iterator iterator out of bounds");
97 coords[0] = (float) cubic.getX1();
98 coords[1] = (float) cubic.getY1();
101 coords[0] = (float) cubic.getCtrlX1();
102 coords[1] = (float) cubic.getCtrlY1();
103 coords[2] = (float) cubic.getCtrlX2();
104 coords[3] = (float) cubic
[all...]
/openjdk7/jdk/test/java/awt/Graphics2D/RenderClipTest/
H A DRenderClipTest.java129 "[-cubic] [-quad] [-poly] [-path]");
149 System.err.println(" -cubic Test CubicCurve2D shapes");
191 } else if (arg.equals("-cubic")) {
261 "-cubic, -quad, -poly, or -path");
739 c.cubic.setCurve(coords[0], coords[1],
746 private CubicCurve2D cubic = new CubicCurve2D.Double(); field in class:RenderClipTest.Cubic
749 cubic.setCurve(randDblCoord(), randDblCoord(),
756 return cubic;
761 cubic.getX1()+", "+
762 cubic
[all...]

Completed in 71 milliseconds