Example usage for Java java.awt.geom Ellipse2D.Double fields, constructors, methods, implement or subclass
The text is from its open source code.
Double(double x, double y, double w, double h) Constructs and initializes an Ellipse2D from the specified coordinates. |
boolean | contains(double x, double y) |
boolean | contains(double x, double y, double w, double h) |
boolean | equals(Object obj) Determines whether or not the specified Object is equal to this Ellipse2D . |
double | getCenterX() Returns the X coordinate of the center of the framing rectangle of the Shape in double precision. |
double | getCenterY() Returns the Y coordinate of the center of the framing rectangle of the Shape in double precision. |
double | getHeight() Returns the height of the framing rectangle in double precision. |
PathIterator | getPathIterator(AffineTransform at) Returns an iteration object that defines the boundary of this Ellipse2D . |
double | getWidth() Returns the width of the framing rectangle in double precision. |
double | getX() Returns the X coordinate of the upper-left corner of the framing rectangle in double precision. |
double | getY() Returns the Y coordinate of the upper-left corner of the framing rectangle in double precision. |
int | hashCode() Returns the hashcode for this Ellipse2D . |
boolean | intersects(double x, double y, double w, double h) |
boolean | intersects(Rectangle2D r) |
void | setFrameFromCenter(double centerX, double centerY, double cornerX, double cornerY) Sets the framing rectangle of this Shape based on the specified center point coordinates and corner point coordinates. |