2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / libjava / java / awt / geom / Ellipse2D.java
blob223a1930991795e6ef7ef242eee4b845c4457181
1 /* Ellipse2D.java -- represents an ellipse in 2-D space
2 Copyright (C) 2000, 2002 Free Software Foundation
4 This file is part of GNU Classpath.
6 GNU Classpath is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; see the file COPYING. If not, write to the
18 Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA.
21 Linking this library statically or dynamically with other modules is
22 making a combined work based on this library. Thus, the terms and
23 conditions of the GNU General Public License cover the whole
24 combination.
26 As a special exception, the copyright holders of this library give you
27 permission to link this library with independent modules to produce an
28 executable, regardless of the license terms of these independent
29 modules, and to copy and distribute the resulting executable under
30 terms of your choice, provided that you also meet, for each linked
31 independent module, the terms and conditions of the license of that
32 module. An independent module is a module which is not derived from
33 or based on this library. If you modify this library, you may extend
34 this exception to your version of the library, but you are not
35 obligated to do so. If you do not wish to do so, delete this
36 exception statement from your version. */
38 package java.awt.geom;
40 /**
41 * @author Tom Tromey <tromey@cygnus.com>
42 * @author Eric Blake <ebb9@email.byu.edu>
43 * @since 1.2
44 * @status still needs documentation
46 public abstract class Ellipse2D extends RectangularShape
48 protected Ellipse2D()
52 public boolean contains(double x, double y)
54 double rx = getWidth() / 2;
55 double ry = getHeight() / 2;
56 double tx = (x - getCenterX()) / rx;
57 double ty = (y - getCenterY()) / ry;
58 return tx * tx + ty * ty <= 1.0;
61 public boolean contains(double x, double y, double w, double h)
63 double x2 = x + w;
64 double y2 = y + h;
65 return (contains(x, y) && contains(x, y2)
66 && contains(x2, y) && contains(x2, y2));
69 public PathIterator getPathIterator(AffineTransform at)
71 // An ellipse is just a complete arc.
72 return new Arc2D.ArcIterator(this, at);
75 public boolean intersects(double x, double y, double w, double h)
77 // fixme
78 return false;
81 public static class Double extends Ellipse2D
83 public double height;
84 public double width;
85 public double x;
86 public double y;
88 public Double()
92 public Double(double x, double y, double w, double h)
94 this.x = x;
95 this.y = y;
96 height = h;
97 width = w;
100 public Rectangle2D getBounds2D()
102 return new Rectangle2D.Double(x, y, width, height);
105 public double getHeight()
107 return height;
110 public double getWidth()
112 return width;
115 public double getX()
117 return x;
120 public double getY()
122 return y;
125 public boolean isEmpty()
127 return height <= 0 || width <= 0;
130 public void setFrame(double x, double y, double w, double h)
132 this.x = x;
133 this.y = y;
134 height = h;
135 width = w;
137 } // class Double
139 public static class Float extends Ellipse2D
141 public float height;
142 public float width;
143 public float x;
144 public float y;
146 public Float()
150 public Float(float x, float y, float w, float h)
152 this.x = x;
153 this.y = y;
154 this.height = h;
155 this.width = w;
158 public Rectangle2D getBounds2D()
160 return new Rectangle2D.Float(x, y, width, height);
163 public double getHeight()
165 return height;
168 public double getWidth()
170 return width;
173 public double getX()
175 return x;
178 public double getY()
180 return y;
183 public boolean isEmpty()
185 return height <= 0 || width <= 0;
188 public void setFrame(float x, float y, float w, float h)
190 this.x = x;
191 this.y = y;
192 height = h;
193 width = w;
196 public void setFrame(double x, double y, double w, double h)
198 this.x = (float) x;
199 this.y = (float) y;
200 height = (float) h;
201 width = (float) w;
203 } // class Float
204 } // class Ellipse2D