Lines Matching defs:y2
962 * @param y2 The Y coordinate of the arc's ending point.
965 public void setAngles(double x1, double y1, double x2, double y2) {
974 double ang2 = Math.atan2(w * (y - y2), h * (x2 - x));
1054 double x1, y1, x2, y2;
1056 x1 = y1 = x2 = y2 = 0.0;
1059 x2 = y2 = -1.0;
1082 y2 = Math.max(y2, ye);
1087 y2 = (y2 - y1) * 0.5 * h;
1090 return makeBounds(x1, y1, x2, y2);
1227 double y2 = Math.sin(angle);
1228 boolean inside = (Line2D.relativeCCW(x1, y1, x2, y2, 2*normx, 2*normy) *
1229 Line2D.relativeCCW(x1, y1, x2, y2, 0, 0) >= 0);