|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.awt.geom.RectangularShape
java.awt.geom.Rectangle2D
java.awt.geom.Rectangle2D.Double
com.quinncurtis.chart2djava.ChartRectangle2D
public class ChartRectangle2D
This method extends the Rectangle2D.Double class, adding more routines for setting the rectangle frame, and returning the points forming the rectangles frame.
Nested Class Summary |
---|
Nested classes/interfaces inherited from class java.awt.geom.Rectangle2D |
---|
java.awt.geom.Rectangle2D.Double, java.awt.geom.Rectangle2D.Float |
Field Summary |
---|
Fields inherited from class java.awt.geom.Rectangle2D.Double |
---|
height, width, x, y |
Fields inherited from class java.awt.geom.Rectangle2D |
---|
OUT_BOTTOM, OUT_LEFT, OUT_RIGHT, OUT_TOP |
Constructor Summary | |
---|---|
ChartRectangle2D()
The default DChartRectangle2D constructor |
|
ChartRectangle2D(ChartRectangle2D r)
This constructor creates an DChartRectangle object based on the properties of a Rectangle2D object. |
|
ChartRectangle2D(double x,
double y,
double w,
double h)
This constructor creates an DChartRectangle object defined by its position, height and width. |
|
ChartRectangle2D(java.awt.geom.Rectangle2D r)
This constructor creates an DChartRectangle object based on the properties of a Rectangle2D object. |
Method Summary | |
---|---|
void |
copy(ChartRectangle2D source)
Copies the source object. |
double |
getCenterX()
|
double |
getCenterY()
Returns the y-value of the center of the rectangle. |
ChartPoint2D |
getDiagonalCorner()
This method returns the corner opposite the x,y position of the rectangle. |
java.awt.Rectangle |
getRectangle()
|
java.awt.geom.Rectangle2D.Double |
getRectangle2D()
|
double |
getX1()
Returns the starting x-corner of the rectangle. |
double |
getX2()
Returns the ending x-corner of the rectangle. |
double |
getY1()
Returns the starting y-corner of the rectangle. |
double |
getY2()
Returns the ending y-corner of the rectangle. |
boolean |
intersectsWith(ChartRectangle2D rect)
|
void |
normalizeHW()
Normalizes the position and size of the Rectangle2D object. |
void |
setDiagonalCorner(ChartPoint2D p)
Sets the corner opposite the x,y position of the rectangle. |
void |
setFrame(ChartRectangle2D r)
Initializes a rectangle object based on a ChartRectangle2D. |
void |
setFrame(int x,
int y,
int w,
int h)
Initializes a rectangle frame. |
void |
setFrameFromDiagonal(ChartPoint2D p1,
ChartPoint2D p2)
Initializes a rectangle object based on a pair of opposite corners. |
void |
setFrameFromDiagonal(double x1,
double y1,
double x2,
double y2)
Initializes a rectangle object based on a pair of opposite corners. |
void |
setHeight(double value)
Sets the height of the rectangle. |
void |
setWidth(double value)
Sets the width of the rectangle. |
void |
setX(double x)
Sets the starting x-corner of the rectangle. |
void |
setX1(double x)
Sets the starting x-corner of the rectangle. |
void |
setX2(double x2)
Sets the ending x-corner of the rectangle. |
void |
setY(double y)
Sets the starting y-corner of the rectangle. |
void |
setY1(double y)
Sets the starting y-corner of the rectangle. |
void |
setY2(double y2)
Sets the ending y-corner of the rectangle. |
Methods inherited from class java.awt.geom.Rectangle2D.Double |
---|
createIntersection, createUnion, getBounds2D, getHeight, getWidth, getX, getY, isEmpty, outcode, setRect, setRect, toString |
Methods inherited from class java.awt.geom.Rectangle2D |
---|
add, add, add, contains, contains, equals, getPathIterator, getPathIterator, hashCode, intersect, intersects, intersectsLine, intersectsLine, outcode, setFrame, union |
Methods inherited from class java.awt.geom.RectangularShape |
---|
clone, contains, contains, getBounds, getFrame, getMaxX, getMaxY, getMinX, getMinY, intersects, setFrame, setFrame, setFrameFromCenter, setFrameFromCenter, setFrameFromDiagonal |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public ChartRectangle2D()
public ChartRectangle2D(ChartRectangle2D r)
r
- The source rectangle.public ChartRectangle2D(double x, double y, double w, double h)
x
- The x-position of the starting x-corner of the rectangle.y
- The y-position of the starting y-corner of the rectangle.w
- The width of the rectangle.h
- The height of the rectangle.public ChartRectangle2D(java.awt.geom.Rectangle2D r)
r
- The source rectangle.Method Detail |
---|
public void copy(ChartRectangle2D source)
source
- The source object.public double getCenterX()
getCenterX
in class java.awt.geom.RectangularShape
public double getCenterY()
getCenterY
in class java.awt.geom.RectangularShape
public ChartPoint2D getDiagonalCorner()
public java.awt.Rectangle getRectangle()
public java.awt.geom.Rectangle2D.Double getRectangle2D()
public double getX1()
public double getX2()
public double getY1()
public double getY2()
public boolean intersectsWith(ChartRectangle2D rect)
public void normalizeHW()
public void setDiagonalCorner(ChartPoint2D p)
p
- A point defining the position of the rectangle corner
opposite the x,y position coordinate.public void setFrame(ChartRectangle2D r)
r
- The source ChartRectangle2D.public void setFrame(int x, int y, int w, int h)
x
- The x-position of the starting x-corner of the rectangle.y
- The y-position of the starting y-corner of the rectangle.w
- The widdth of the rectangle.h
- The height of the rectangle.public void setFrameFromDiagonal(ChartPoint2D p1, ChartPoint2D p2)
p1
- The starting corner of the rectangle.p2
- The ending corner of the rectangle.public void setFrameFromDiagonal(double x1, double y1, double x2, double y2)
setFrameFromDiagonal
in class java.awt.geom.RectangularShape
x1
- The x-position of the starting x-corner of the rectangle.y1
- The y-position of the starting y-corner of the rectangle.x2
- The x-position of the ending x-corner of the rectangle.y2
- The y-position of the ending y-corner of the rectangle.public void setHeight(double value)
value
- Sets the width of the rectangle.public void setWidth(double value)
value
- Sets the width of the rectangle.public void setX(double x)
x
- Sets the starting x-corner of the rectangle.public void setX1(double x)
x
- Sets the starting x-corner of the rectangle.public void setX2(double x2)
x2
- Sets the ending x-corner of the rectangle.public void setY(double y)
y
- Sets the starting y-corner of the rectangle.public void setY1(double y)
y
- Sets the starting y-corner of the rectangle.public void setY2(double y2)
y2
- Sets the ending y-corner of the rectangle.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |