Lines Matching refs:y1

381         public final synchronized void quadTo(double x1, double y1,
387 floatCoords[numCoords++] = (float) y1;
396 * using the specified point {@code (x1,y1)} as a quadratic
405 * @param y1 the Y coordinate of the quadratic control point
411 public final synchronized void quadTo(float x1, float y1,
417 floatCoords[numCoords++] = y1;
426 public final synchronized void curveTo(double x1, double y1,
433 floatCoords[numCoords++] = (float) y1;
444 * using the specified points {@code (x1,y1)} and {@code (x2,y2)} as
453 * @param y1 the Y coordinate of the first Bézier control point
461 public final synchronized void curveTo(float x1, float y1,
468 floatCoords[numCoords++] = y1;
705 float x1, y1, x2, y2;
708 y1 = y2 = floatCoords[--i];
714 if (y < y1) y1 = y;
719 x1 = y1 = x2 = y2 = 0.0f;
721 return new Rectangle2D.Float(x1, y1, x2 - x1, y2 - y1);
1170 public final synchronized void quadTo(double x1, double y1,
1176 doubleCoords[numCoords++] = y1;
1185 public final synchronized void curveTo(double x1, double y1,
1192 doubleCoords[numCoords++] = y1;
1430 double x1, y1, x2, y2;
1433 y1 = y2 = doubleCoords[--i];
1439 if (y < y1) y1 = y;
1444 x1 = y1 = x2 = y2 = 0.0;
1446 return new Rectangle2D.Double(x1, y1, x2 - x1, y2 - y1);
1727 * using the specified point {@code (x1,y1)} as a quadratic
1732 * @param y1 the Y coordinate of the quadratic control point
1737 public abstract void quadTo(double x1, double y1,
1744 * using the specified points {@code (x1,y1)} and {@code (x2,y2)} as
1749 * @param y1 the Y coordinate of the first B&eacute;zier control point
1756 public abstract void curveTo(double x1, double y1,