Class RoundRectangle2D.Double
java.lang.Object
java.awt.geom.RectangularShape
java.awt.geom.RoundRectangle2D
java.awt.geom.RoundRectangle2D.Double
- All Implemented Interfaces:
Shape, Serializable, Cloneable
- Enclosing class:
RoundRectangle2D
The
Double class defines a rectangle with rounded
corners all specified in double coordinates.- Since:
- 1.2
- See Also:
-
Nested Class Summary
Nested classes/interfaces declared in class RoundRectangle2D
RoundRectangle2D.Double, RoundRectangle2D.FloatModifier and TypeClassDescriptionstatic classTheDoubleclass defines a rectangle with rounded corners all specified indoublecoordinates.static classTheFloatclass defines a rectangle with rounded corners all specified infloatcoordinates. -
Field Summary
FieldsModifier and TypeFieldDescriptiondoubleThe height of the arc that rounds off the corners.doubleThe width of the arc that rounds off the corners.doubleThe height of thisRoundRectangle2D.doubleThe width of thisRoundRectangle2D.doubleThe X coordinate of thisRoundRectangle2D.doubleThe Y coordinate of thisRoundRectangle2D. -
Constructor Summary
ConstructorsConstructorDescriptionDouble()Constructs a newRoundRectangle2D, initialized to location (0.0, 0.0), size (0.0, 0.0), and corner arcs of radius 0.0.Double(double x, double y, double w, double h, double arcw, double arch) Constructs and initializes aRoundRectangle2Dfrom the specifieddoublecoordinates. -
Method Summary
Modifier and TypeMethodDescriptiondoubleGets the height of the arc that rounds off the corners.doubleGets the width of the arc that rounds off the corners.Returns 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.voidsetRoundRect(double x, double y, double w, double h, double arcw, double arch) Sets the location, size, and corner radii of thisRoundRectangle2Dto the specifieddoublevalues.voidSets thisRoundRectangle2Dto be the same as the specifiedRoundRectangle2D.Methods declared in class RoundRectangle2D
contains, contains, equals, getPathIterator, hashCode, intersects, setFrameModifier 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 thisRoundRectangle2D.Returns an iteration object that defines the boundary of thisRoundRectangle2D.inthashCode()Returns the hashcode for thisRoundRectangle2D.booleanintersects(double x, double y, double w, double h) Tests if the interior of theShapeintersects the interior of a specified rectangular area.voidsetFrame(double x, double y, double w, double h) Sets the location and size of the framing rectangle of thisShapeto the specified rectangular values.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 double xThe X coordinate of thisRoundRectangle2D.- Since:
- 1.2
-
y
public double yThe Y coordinate of thisRoundRectangle2D.- Since:
- 1.2
-
width
public double widthThe width of thisRoundRectangle2D.- Since:
- 1.2
-
height
public double heightThe height of thisRoundRectangle2D.- Since:
- 1.2
-
arcwidth
public double arcwidthThe width of the arc that rounds off the corners.- Since:
- 1.2
-
archeight
public double archeightThe height of the arc that rounds off the corners.- Since:
- 1.2
-
-
Constructor Details
-
Double
public Double()Constructs a newRoundRectangle2D, initialized to location (0.0, 0.0), size (0.0, 0.0), and corner arcs of radius 0.0.- Since:
- 1.2
-
Double
public Double(double x, double y, double w, double h, double arcw, double arch) Constructs and initializes aRoundRectangle2Dfrom the specifieddoublecoordinates.- Parameters:
x- the X coordinate of the newly constructedRoundRectangle2Dy- the Y coordinate of the newly constructedRoundRectangle2Dw- the width to which to set the newly constructedRoundRectangle2Dh- the height to which to set the newly constructedRoundRectangle2Darcw- the width of the arc to use to round off the corners of the newly constructedRoundRectangle2Darch- the height of the arc to use to round off the corners of the newly constructedRoundRectangle2D- 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
-
getArcWidth
public double getArcWidth()Gets the width of the arc that rounds off the corners.- Specified by:
getArcWidthin classRoundRectangle2D- Returns:
- the width of the arc that rounds off the corners
of this
RoundRectangle2D. - Since:
- 1.2
-
getArcHeight
public double getArcHeight()Gets the height of the arc that rounds off the corners.- Specified by:
getArcHeightin classRoundRectangle2D- Returns:
- the height of the arc that rounds off the corners
of this
RoundRectangle2D. - 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
-
setRoundRect
public void setRoundRect(double x, double y, double w, double h, double arcw, double arch) Sets the location, size, and corner radii of thisRoundRectangle2Dto the specifieddoublevalues.- Specified by:
setRoundRectin classRoundRectangle2D- Parameters:
x- the X coordinate to which to set the location of thisRoundRectangle2Dy- the Y coordinate to which to set the location of thisRoundRectangle2Dw- the width to which to set thisRoundRectangle2Dh- the height to which to set thisRoundRectangle2Darcw- the width to which to set the arc of thisRoundRectangle2Darch- the height to which to set the arc of thisRoundRectangle2D- Since:
- 1.2
-
setRoundRect
Sets thisRoundRectangle2Dto be the same as the specifiedRoundRectangle2D.- Overrides:
setRoundRectin classRoundRectangle2D- Parameters:
rr- the specifiedRoundRectangle2D- Since:
- 1.2
-
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:
-