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

/frameworks/base/awt/java/awt/geom/
H A DPoint2D.java35 * The Class Float is the subclass of Point2D that has all of its data
40 public static class Float extends Point2D { class in class:Point2D
55 public Float() { method in class:Point2D.Float
67 public Float(float x, float y) { method in class:Point2D.Float
H A DEllipse2D.java37 * The Class Float is the subclass of Ellipse2D that has all of its data
42 public static class Float extends Ellipse2D { class in class:Ellipse2D
69 public Float() { method in class:Ellipse2D.Float
86 public Float(float x, float y, float width, float height) { method in class:Ellipse2D.Float
145 return new Rectangle2D.Float(x, y, width, height);
H A DLine2D.java39 * The Class Float is the subclass of Line2D that has all of its data values
44 public static class Float extends Line2D { class in class:Line2D
70 public Float() { method in class:Line2D.Float
85 public Float(float x1, float y1, float x2, float y2) { method in class:Line2D.Float
97 public Float(Point2D p1, Point2D p2) { method in class:Line2D.Float
123 return new Point2D.Float(x1, y1);
128 return new Point2D.Float(x2, y2);
174 return new Rectangle2D.Float(rx, ry, rw, rh);
H A DRectangle2D.java62 * The Class Float is the subclass of Rectangle2D that represents a
68 public static class Float extends Rectangle2D { class in class:Rectangle2D
93 public Float() { method in class:Rectangle2D.Float
108 public Float(float x, float y, float width, float height) { method in class:Rectangle2D.Float
197 return new Float(x, y, width, height);
206 dst = new Rectangle2D.Float();
218 dst = new Rectangle2D.Float();
228 // System.out.println(new Rectangle2D.Float().toString())
H A DRoundRectangle2D.java37 * The Class Float is the subclass of RoundRectangle2D that has all of its
42 public static class Float extends RoundRectangle2D { class in class:RoundRectangle2D
78 public Float() { method in class:RoundRectangle2D.Float
98 public Float(float x, float y, float width, float height, float arcwidth, float archeight) { method in class:RoundRectangle2D.Float
185 return new Rectangle2D.Float(x, y, width, height);
H A DArc2D.java62 * The Class Float is a subclass of Arc2D in which all of the data values
68 public static class Float extends Arc2D { class in class:Arc2D
105 public Float() { method in class:Arc2D.Float
116 public Float(int type) { method in class:Arc2D.Float
141 public Float(float x, float y, float width, float height, float start, float extent, method in class:Arc2D.Float
166 public Float(Rectangle2D bounds, float start, float extent, int type) { method in class:Arc2D.Float
235 return new Rectangle2D.Float((float)x, (float)y, (float)width, (float)height);
244 * @see Arc2D.Float
692 * whether this Arc2D instance is of type Float or Double.
H A DCubicCurve2D.java45 * The Class Float is the subclass of CubicCurve2D that has all of its data
50 public static class Float extends CubicCurve2D { class in class:CubicCurve2D
96 public Float() { method in class:CubicCurve2D.Float
120 public Float(float x1, float y1, float ctrlx1, float ctrly1, float ctrlx2, float ctrly2, method in class:CubicCurve2D.Float
167 return new Point2D.Float(x1, y1);
172 return new Point2D.Float(ctrlx1, ctrly1);
177 return new Point2D.Float(ctrlx2, ctrly2);
182 return new Point2D.Float(x2, y2);
235 return new Rectangle2D.Float(rx1, ry1, rx2 - rx1, ry2 - ry1);
H A DQuadCurve2D.java44 * The Class Float is the subclass of QuadCurve2D that has all of its data
49 public static class Float extends QuadCurve2D { class in class:QuadCurve2D
85 public Float() { method in class:QuadCurve2D.Float
107 public Float(float x1, float y1, float ctrlx, float ctrly, float x2, float y2) { method in class:QuadCurve2D.Float
143 return new Point2D.Float(x1, y1);
148 return new Point2D.Float(ctrlx, ctrly);
153 return new Point2D.Float(x2, y2);
198 return new Rectangle2D.Float(rx0, ry0, rx1 - rx0, ry1 - ry0);

Completed in 80 milliseconds