Lines Matching refs:y2

100         public float y2;
119 * @param y2 the Y coordinate of the end point
124 float x2, float y2)
126 setCurve(x1, y1, ctrlx, ctrly, x2, y2);
190 return (double) y2;
198 return new Point2D.Float(x2, y2);
207 double x2, double y2)
214 this.y2 = (float) y2;
226 * @param y2 the Y coordinate of the end point
231 float x2, float y2)
238 this.y2 = y2;
247 float top = Math.min(Math.min(y1, y2), ctrly);
249 float bottom = Math.max(Math.max(y1, y2), ctrly);
313 public double y2;
332 * @param y2 the Y coordinate of the end point
337 double x2, double y2)
339 setCurve(x1, y1, ctrlx, ctrly, x2, y2);
403 return y2;
411 return new Point2D.Double(x2, y2);
420 double x2, double y2)
427 this.y2 = y2;
436 double top = Math.min(Math.min(y1, y2), ctrly);
438 double bottom = Math.max(Math.max(y1, y2), ctrly);
544 * @param y2 the Y coordinate of the end point
549 double x2, double y2);
623 * @param y2 the Y coordinate of the end point
630 double x2, double y2) {
631 return Line2D.ptSegDistSq(x1, y1, x2, y2, ctrlx, ctrly);
644 * @param y2 the Y coordinate of the end point
651 double x2, double y2) {
652 return Line2D.ptSegDist(x1, y1, x2, y2, ctrlx, ctrly);
757 double y2 = src.getY2();
761 double ctrly2 = (y2 + ctrly) / 2.0;
768 right.setCurve(ctrlx, ctrly, ctrlx2, ctrly2, x2, y2);
808 double y2 = src[srcoff + 5];
815 right[rightoff + 5] = y2;
820 y2 = (y2 + ctrly) / 2.0;
822 ctrly = (y1 + y2) / 2.0;
833 right[rightoff + 3] = y2;
927 double y2 = getY2();
934 * P2 = (x2, y2) - end point of curve
969 * ky = y1 - 2*yc + y2
977 * ((x2 - x1)*ky - (y2 - y1)*kx)
996 double ky = y1 - 2 * yc + y2;
1000 double dyl = y2 - y1;
1142 double y2 = getY2();
1144 int y2tag = getTag(y2, y, y+h);
1210 fillEqn(eqn, (y1tag < INSIDE ? y : y+h), y1, ctrly, y2);
1227 y1, ctrly, y2) == 2 &&
1235 double dy = y2 - y1;
1236 double k = y2 * x1 - x2 * y1;
1293 evalQuadratic(res, num, true, true, null, y1, ctrly, y2);