Contents | Package | Class | Tree | Deprecated | Index | Help Java 1.2 Beta 3
PREV | NEXT SHOW LISTS | HIDE LISTS

Class java.awt.geom.Ellipse2D.Float

java.lang.Object
    |
    +----java.awt.geom.RectangularShape
            |
            +----java.awt.geom.Ellipse2D
                    |
                    +----java.awt.geom.Ellipse2D.Float

public static class Ellipse2D.Float
extends Ellipse2D
An ellipse specified in float precision.


Inner classes inherited from class java.awt.geom.Ellipse2D
 Ellipse2D.Double, Ellipse2D.Float
 

Field Summary
float  height
The overall height of the ellipse.
float  width
The overall width of the ellipse.
float  x
The x coordinate of the upper left corner of the ellipse.
float  y
The y coordinate of the upper left corner of the ellipse.
 

Constructor Summary
 Ellipse2D.Float()
Constructs a new ellipse, initialized to location (0, 0) and size (0, 0).
 Ellipse2D.Float(float x, float y, float w, float h)
Constructs and initializes an ellipse from the specified coordinates.
 

Method Summary
Rectangle2D  getBounds2D()
Return the high precision bounding box of the shape.
double  getHeight()
Returns the overall height of the ellipse in double precision.
double  getWidth()
Returns the overall width of the ellipse in double precision.
double  getX()
Returns the X coordinate of the upper left corner of the ellipse in double precision.
double  getY()
Returns the Y coordinate of the upper left corner of the ellipse in double precision.
boolean  isEmpty()
Determines whether the rectangular shape is empty.
void  setBounds(float x, float y, float w, float h)
Sets the location and size of this ellipse to the specified float values.
void  setBounds(double x, double y, double w, double h)
Sets the location and size of this ellipse to the specified double values.
 
Methods inherited from class java.awt.geom.Ellipse2D
 contains, contains, getPathIterator, intersects
 
Methods inherited from class java.awt.geom.RectangularShape
 clone, contains, contains, getBottom, getBounds, getCenterX, getCenterY, getHeight, getLeft, getPathIterator, getRight, getTop, getWidth, getX, getY, intersects, isEmpty, setBounds, setBounds, setBounds, setBoundsFromCenter, setBoundsFromCenter, setBoundsFromDiagonal, setBoundsFromDiagonal
 
Methods inherited from class java.lang.Object
 clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

x

public float x
The x coordinate of the upper left corner of the ellipse.

y

public float y
The y coordinate of the upper left corner of the ellipse.

width

public float width
The overall width of the ellipse.

height

public float height
The overall height of the ellipse.
Constructor Detail

Ellipse2D.Float

public Ellipse2D.Float()
Constructs a new ellipse, initialized to location (0, 0) and size (0, 0).

Ellipse2D.Float

public Ellipse2D.Float(float x,
                       float y,
                       float w,
                       float h)
Constructs and initializes an ellipse from the specified coordinates.
Parameters:
x - the x coordinate
y - the y coordinate
width - the width of the rectangle
height - the height of the rectangle
Method Detail

getX

public double getX()
Returns the X coordinate of the upper left corner of the ellipse in double precision.
Overrides:
getX in class RectangularShape

getY

public double getY()
Returns the Y coordinate of the upper left corner of the ellipse in double precision.
Overrides:
getY in class RectangularShape

getWidth

public double getWidth()
Returns the overall width of the ellipse in double precision.
Overrides:
getWidth in class RectangularShape

getHeight

public double getHeight()
Returns the overall height of the ellipse in double precision.
Overrides:
getHeight in class RectangularShape

isEmpty

public boolean isEmpty()
Determines whether the rectangular shape is empty.
Overrides:
isEmpty in class RectangularShape

setBounds

public void setBounds(float x,
                      float y,
                      float w,
                      float h)
Sets the location and size of this ellipse to the specified float values.

setBounds

public void setBounds(double x,
                      double y,
                      double w,
                      double h)
Sets the location and size of this ellipse to the specified double values.
Overrides:
setBounds in class RectangularShape

getBounds2D

public Rectangle2D getBounds2D()
Return the high precision bounding box of the shape.

Contents | Package | Class | Tree | Deprecated | Index | Help Java 1.2 Beta 3
PREV | NEXT SHOW LISTS | HIDE LISTS

Submit a bug or feature
Submit comments/suggestions about new javadoc look.
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California, 94303, U.S.A. All Rights Reserved.