Lines Matching refs:y2

120         public float y2;
148 * @param y2 the Y coordinate for the end point
155 float x2, float y2)
157 setCurve(x1, y1, ctrlx1, ctrly1, ctrlx2, ctrly2, x2, y2);
245 return (double) y2;
253 return new Point2D.Float(x2, y2);
263 double x2, double y2)
272 this.y2 = (float) y2;
293 * @param y2 the Y coordinate used to set the end point
300 float x2, float y2)
309 this.y2 = y2;
319 float top = Math.min(Math.min(y1, y2),
323 float bottom = Math.max(Math.max(y1, y2),
403 public double y2;
431 * @param y2 the Y coordinate for the end point
438 double x2, double y2)
440 setCurve(x1, y1, ctrlx1, ctrly1, ctrlx2, ctrly2, x2, y2);
528 return y2;
536 return new Point2D.Double(x2, y2);
546 double x2, double y2)
555 this.y2 = y2;
565 double top = Math.min(Math.min(y1, y2),
569 double bottom = Math.max(Math.max(y1, y2),
711 * @param y2 the Y coordinate used to set the end point
718 double x2, double y2);
802 * @param y2 the Y coordinate that specifies the end point
811 double x2, double y2) {
812 return Math.max(Line2D.ptSegDistSq(x1, y1, x2, y2, ctrlx1, ctrly1),
813 Line2D.ptSegDistSq(x1, y1, x2, y2, ctrlx2, ctrly2));
836 * @param y2 the Y coordinate that specifies the end point
845 double x2, double y2) {
847 ctrlx2, ctrly2, x2, y2));
952 double y2 = src.getY2();
958 ctrly2 = (y2 + ctrly2) / 2.0;
971 ctrlx2, ctrly2, x2, y2);
1013 double y2 = src[srcoff + 7];
1020 right[rightoff + 7] = y2;
1025 y2 = (y2 + ctrly2) / 2.0;
1031 ctrly2 = (y2 + centery) / 2.0;
1048 right[rightoff + 5] = y2;
1418 double y2 = getY2();
1420 (Curve.pointCrossingsForLine(x, y, x1, y1, x2, y2) +
1425 x2, y2, 0));