Class Rectangle
public class Rectangle
extends Object
Represents a rectangle class.
-
Constructor Summary
Constructors
Rectangle(double x,
double y,
double width,
double height)
Constructor that creates a rectangle object with the specified position and size.
-
Method Summary
final double
Returns the height of this rectangle.
final double
Returns the width of this rectangle.
final double
Returns the x-coordinate of the upper-left corner of this rectangle.
final double
Returns the y-coordinate of the upper-left corner of this rectangle.
final void
Sets the height of this rectangle.
final void
Sets the width of this rectangle.
final void
Sets the x-coordinate of the upper-left corner of this rectangle.
final void
Sets the y-coordinate of the upper-left corner of this rectangle.
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
Rectangle
public Rectangle(double x,
double y,
double width,
double height)
Constructor that creates a rectangle object with the specified position and size.
- Parameters:
x
- The x-coordinate of the upper-left corner of the rectangle.
y
- The y-coordinate of the upper-left corner of the rectangle.
width
- The width of the rectangle.
height
- The height of the rectangle.
-
Method Details
-
getX
public final double getX()
Returns the x-coordinate of the upper-left corner of this rectangle.
-
setX
public final void setX(double value)
Sets the x-coordinate of the upper-left corner of this rectangle.
-
getY
public final double getY()
Returns the y-coordinate of the upper-left corner of this rectangle.
-
setY
public final void setY(double value)
Sets the y-coordinate of the upper-left corner of this rectangle.
-
getWidth
public final double getWidth()
Returns the width of this rectangle.
-
setWidth
public final void setWidth(double value)
Sets the width of this rectangle.
-
getHeight
public final double getHeight()
Returns the height of this rectangle.
-
setHeight
public final void setHeight(double value)
Sets the height of this rectangle.