Searched defs:Double (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/awt/java/awt/geom/
H A DPoint2D.java108 * The Class Double is the subclass of Point2D that has all of its data
113 public static class Double extends Point2D { class in class:Point2D
128 public Double() { method in class:Point2D.Double
140 public Double(double x, double y) { method in class:Point2D.Double
H A DEllipse2D.java150 * The Class Double is the subclass of Ellipse2D that has all of its data
155 public static class Double extends Ellipse2D { class in class:Ellipse2D
182 public Double() { method in class:Ellipse2D.Double
199 public Double(double x, double y, double width, double height) { method in class:Ellipse2D.Double
237 return new Rectangle2D.Double(x, y, width, height);
H A DLine2D.java179 * The Class Double is the subclass of Line2D that has all of its data
184 public static class Double extends Line2D { class in class:Line2D
210 public Double() { method in class:Line2D.Double
225 public Double(double x1, double y1, double x2, double y2) { method in class:Line2D.Double
237 public Double(Point2D p1, Point2D p2) { method in class:Line2D.Double
263 return new Point2D.Double(x1, y1);
268 return new Point2D.Double(x2, y2);
295 return new Rectangle2D.Double(rx, ry, rw, rh);
924 return intersects(new Rectangle2D.Double(rx, ry, rw, rh));
H A DRectangle2D.java203 if (r instanceof Double) {
204 dst = new Rectangle2D.Double();
215 if (r instanceof Double) {
216 dst = new Rectangle2D.Double();
235 * The Class Double is the subclass of Rectangle2D that represents a
241 public static class Double extends Rectangle2D { class in class:Rectangle2D
266 public Double() { method in class:Rectangle2D.Double
281 public Double(double x, double y, double width, double height) { method in class:Rectangle2D.Double
351 return new Double(x, y, width, height);
356 Rectangle2D dst = new Rectangle2D.Double();
[all...]
H A DRoundRectangle2D.java190 * The Class Double is the subclass of RoundRectangle2D that has all of its
195 public static class Double extends RoundRectangle2D { class in class:RoundRectangle2D
231 public Double() { method in class:RoundRectangle2D.Double
251 public Double(double x, double y, double width, double height, double arcwidth, method in class:RoundRectangle2D.Double
313 return new Rectangle2D.Double(x, y, width, height);
H A DArc2D.java65 * @see Arc2D.Double
241 * The Class Double is a subclass of Arc2D in which all of the data values
247 public static class Double extends Arc2D { class in class:Arc2D
284 public Double() { method in class:Arc2D.Double
295 public Double(int type) { method in class:Arc2D.Double
320 public Double(double x, double y, double width, double height, double start, double extent, method in class:Arc2D.Double
345 public Double(Rectangle2D bounds, double start, double extent, int type) { method in class:Arc2D.Double
414 return new Rectangle2D.Double(x, y, width, height);
692 * whether this Arc2D instance is of type Float or Double.
794 return new Point2D.Double(get
[all...]
H A DCubicCurve2D.java240 * The Class Double is the subclass of CubicCurve2D that has all of its data
245 public static class Double extends CubicCurve2D { class in class:CubicCurve2D
291 public Double() { method in class:CubicCurve2D.Double
315 public Double(double x1, double y1, double ctrlx1, double ctrly1, double ctrlx2, method in class:CubicCurve2D.Double
362 return new Point2D.Double(x1, y1);
367 return new Point2D.Double(ctrlx1, ctrly1);
372 return new Point2D.Double(ctrlx2, ctrly2);
377 return new Point2D.Double(x2, y2);
398 return new Rectangle2D.Double(rx1, ry1, rx2 - rx1, ry2 - ry1);
H A DQuadCurve2D.java203 * The Class Double is the subclass of QuadCurve2D that has all of its data
208 public static class Double extends QuadCurve2D { class in class:QuadCurve2D
244 public Double() { method in class:QuadCurve2D.Double
266 public Double(double x1, double y1, double ctrlx, double ctrly, double x2, double y2) { method in class:QuadCurve2D.Double
302 return new Point2D.Double(x1, y1);
307 return new Point2D.Double(ctrlx, ctrly);
312 return new Point2D.Double(x2, y2);
330 return new Rectangle2D.Double(rx0, ry0, rx1 - rx0, ry1 - ry0);

Completed in 77 milliseconds