Class Ellipse2D.Float
java.lang.Object
java.awt.geom.RectangularShape
java.awt.geom.Ellipse2D
java.awt.geom.Ellipse2D.Float
- All Implemented Interfaces:
Shape, Serializable, Cloneable
- Enclosing class:
Ellipse2D
The
Float class defines an ellipse specified
in float precision.- Since:
- 1.2
- See Also:
-
Nested Class Summary
Nested classes/interfaces declared in class Ellipse2D
Ellipse2D.Double, Ellipse2D.FloatModifier and TypeClassDescriptionstatic classTheDoubleclass defines an ellipse specified indoubleprecision.static classTheFloatclass defines an ellipse specified infloatprecision. -
Field Summary
FieldsModifier and TypeFieldDescriptionfloatThe overall height of thisEllipse2D.floatThe overall width of thisEllipse2D.floatThe X coordinate of the upper-left corner of the framing rectangle of thisEllipse2D.floatThe Y coordinate of the upper-left corner of the framing rectangle of thisEllipse2D. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns a high precision and more accurate bounding box of theShapethan thegetBoundsmethod.doubleReturns the height of the framing rectangle indoubleprecision.doublegetWidth()Returns the width of the framing rectangle indoubleprecision.doublegetX()Returns the X coordinate of the upper-left corner of the framing rectangle indoubleprecision.doublegetY()Returns the Y coordinate of the upper-left corner of the framing rectangle indoubleprecision.booleanisEmpty()Determines whether theRectangularShapeis empty.voidsetFrame(double x, double y, double w, double h) Sets the location and size of the framing rectangle of thisShapeto the specified rectangular values.voidsetFrame(float x, float y, float w, float h) Sets the location and size of the framing rectangle of thisShapeto the specified rectangular values.Methods declared in class Ellipse2D
contains, contains, equals, getPathIterator, hashCode, intersectsModifier and TypeMethodDescriptionbooleancontains(double x, double y) Tests if the specified coordinates are inside the boundary of theShape, as described by the definition of insideness.booleancontains(double x, double y, double w, double h) Tests if the interior of theShapeentirely contains the specified rectangular area.booleanDetermines whether or not the specifiedObjectis equal to thisEllipse2D.Returns an iteration object that defines the boundary of thisEllipse2D.inthashCode()Returns the hashcode for thisEllipse2D.booleanintersects(double x, double y, double w, double h) Tests if the interior of theShapeintersects the interior of a specified rectangular area.Methods declared in class RectangularShape
clone, contains, contains, getBounds, getCenterX, getCenterY, getFrame, getMaxX, getMaxY, getMinX, getMinY, getPathIterator, intersects, setFrame, setFrame, setFrameFromCenter, setFrameFromCenter, setFrameFromDiagonal, setFrameFromDiagonalModifier and TypeMethodDescriptionclone()Creates a new object of the same class and with the same contents as this object.booleanTests if a specifiedPoint2Dis inside the boundary of theShape, as described by the definition of insideness.booleanTests if the interior of theShapeentirely contains the specifiedRectangle2D.Returns an integerRectanglethat completely encloses theShape.doubleReturns the X coordinate of the center of the framing rectangle of theShapeindoubleprecision.doubleReturns the Y coordinate of the center of the framing rectangle of theShapeindoubleprecision.getFrame()Returns the framingRectangle2Dthat defines the overall shape of this object.doublegetMaxX()Returns the largest X coordinate of the framing rectangle of theShapeindoubleprecision.doublegetMaxY()Returns the largest Y coordinate of the framing rectangle of theShapeindoubleprecision.doublegetMinX()Returns the smallest X coordinate of the framing rectangle of theShapeindoubleprecision.doublegetMinY()Returns the smallest Y coordinate of the framing rectangle of theShapeindoubleprecision.getPathIterator(AffineTransform at, double flatness) Returns an iterator object that iterates along theShapeobject's boundary and provides access to a flattened view of the outline of theShapeobject's geometry.booleanTests if the interior of theShapeintersects the interior of a specifiedRectangle2D.voidsetFrame(Point2D loc, Dimension2D size) Sets the location and size of the framing rectangle of thisShapeto the specifiedPoint2DandDimension2D, respectively.voidSets the framing rectangle of thisShapeto be the specifiedRectangle2D.voidsetFrameFromCenter(double centerX, double centerY, double cornerX, double cornerY) Sets the framing rectangle of thisShapebased on the specified center point coordinates and corner point coordinates.voidsetFrameFromCenter(Point2D center, Point2D corner) Sets the framing rectangle of thisShapebased on a specified centerPoint2Dand cornerPoint2D.voidsetFrameFromDiagonal(double x1, double y1, double x2, double y2) Sets the diagonal of the framing rectangle of thisShapebased on the two specified coordinates.voidsetFrameFromDiagonal(Point2D p1, Point2D p2) Sets the diagonal of the framing rectangle of thisShapebased on two specifiedPoint2Dobjects.Methods declared in class Object
finalize, getClass, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Field Details
-
x
public float xThe X coordinate of the upper-left corner of the framing rectangle of thisEllipse2D.- Since:
- 1.2
-
y
public float yThe Y coordinate of the upper-left corner of the framing rectangle of thisEllipse2D.- Since:
- 1.2
-
width
public float widthThe overall width of thisEllipse2D.- Since:
- 1.2
-
height
public float heightThe overall height of thisEllipse2D.- Since:
- 1.2
-
-
Constructor Details
-
Float
public Float()Constructs a newEllipse2D, initialized to location (0, 0) and size (0, 0).- Since:
- 1.2
-
Float
public Float(float x, float y, float w, float h) Constructs and initializes anEllipse2Dfrom the specified coordinates.- Parameters:
x- the X coordinate of the upper-left corner of the framing rectangley- the Y coordinate of the upper-left corner of the framing rectanglew- the width of the framing rectangleh- the height of the framing rectangle- Since:
- 1.2
-
-
Method Details
-
getX
public double getX()Returns the X coordinate of the upper-left corner of the framing rectangle indoubleprecision.- Specified by:
getXin classRectangularShape- Returns:
- the X coordinate of the upper-left corner of the framing rectangle.
- Since:
- 1.2
-
getY
public double getY()Returns the Y coordinate of the upper-left corner of the framing rectangle indoubleprecision.- Specified by:
getYin classRectangularShape- Returns:
- the Y coordinate of the upper-left corner of the framing rectangle.
- Since:
- 1.2
-
getWidth
public double getWidth()Returns the width of the framing rectangle indoubleprecision.- Specified by:
getWidthin classRectangularShape- Returns:
- the width of the framing rectangle.
- Since:
- 1.2
-
getHeight
public double getHeight()Returns the height of the framing rectangle indoubleprecision.- Specified by:
getHeightin classRectangularShape- Returns:
- the height of the framing rectangle.
- Since:
- 1.2
-
isEmpty
public boolean isEmpty()Determines whether theRectangularShapeis empty. When theRectangularShapeis empty, it encloses no area.- Specified by:
isEmptyin classRectangularShape- Returns:
trueif theRectangularShapeis empty;falseotherwise.- Since:
- 1.2
-
setFrame
public void setFrame(float x, float y, float w, float h) Sets the location and size of the framing rectangle of thisShapeto the specified rectangular values.- Parameters:
x- the X coordinate of the upper-left corner of the specified rectangular shapey- the Y coordinate of the upper-left corner of the specified rectangular shapew- the width of the specified rectangular shapeh- the height of the specified rectangular shape- Since:
- 1.2
-
setFrame
public void setFrame(double x, double y, double w, double h) Sets the location and size of the framing rectangle of thisShapeto the specified rectangular values.- Specified by:
setFramein classRectangularShape- Parameters:
x- the X coordinate of the upper-left corner of the specified rectangular shapey- the Y coordinate of the upper-left corner of the specified rectangular shapew- the width of the specified rectangular shapeh- the height of the specified rectangular shape- Since:
- 1.2
- See Also:
-
getBounds2D
Returns a high precision and more accurate bounding box of theShapethan thegetBoundsmethod. Note that there is no guarantee that the returnedRectangle2Dis the smallest bounding box that encloses theShape, only that theShapelies entirely within the indicatedRectangle2D. The bounding box returned by this method is usually tighter than that returned by thegetBoundsmethod and never fails due to overflow problems since the return value can be an instance of theRectangle2Dthat uses double precision values to store the dimensions.Note that the definition of insideness can lead to situations where points on the defining outline of the
shapemay not be considered contained in the returnedboundsobject, but only in cases where those points are also not considered contained in the originalshape.If a
pointis inside theshapeaccording to thecontains(point)method, then it must be inside the returnedRectangle2Dbounds object according to thecontains(point)method of thebounds. Specifically:shape.contains(p)requiresbounds.contains(p)If a
pointis not inside theshape, then it might still be contained in theboundsobject:bounds.contains(p)does not implyshape.contains(p)- Specified by:
getBounds2Din interfaceShape- Returns:
- an instance of
Rectangle2Dthat is a high-precision bounding box of theShape. - Since:
- 1.2
- See Also:
-