Modifier and Type | Method and Description |
---|---|
Point |
Point.cloneObject()
Creates and returns a deep copy of this
Point . |
Point |
CubicBezier.getBasePoint1()
Returns the first base point of the curve (the one closer to the
starting point).
|
Point |
CubicBezier.getBasePoint2()
Returns the second base point of the curve (the one closer to the end
point).
|
Point |
LineSegment.getEnd()
Returns the end point of the line.
|
Point |
BoundingBox.getPosition()
Returns the position of the
BoundingBox as referece to a Point object. |
Point |
LineSegment.getStart()
Returns the start point of the line.
|
Modifier and Type | Method and Description |
---|---|
void |
CubicBezier.setBasePoint1(Point p)
Initializes first base point with a copy of the given point.
|
void |
CubicBezier.setBasePoint2(Point p)
Initializes second base point with a copy of the given point.
|
void |
LineSegment.setEnd(Point end)
Initializes the end point with a copy of the given
Point object. |
void |
BoundingBox.setPosition(Point p)
Sets the position to a copy of the
Point object given. |
void |
LineSegment.setStart(Point start)
Initializes the start point with a copy of the given
Point object. |
Constructor and Description |
---|
BoundingBox(LayoutPkgNamespaces layoutns,
String id,
Point p,
Dimensions d)
Constructor which sets the id, the coordinates and the dimensions to
the given values.
|
CubicBezier(LayoutPkgNamespaces layoutns,
Point start,
Point end)
Creates a
CubicBezier with the given points and returns the pointer. |
CubicBezier(LayoutPkgNamespaces layoutns,
Point start,
Point base1,
Point base2,
Point end)
Creates a
CubicBezier with the given points and returns the pointer. |
GraphicalObject(LayoutPkgNamespaces layoutns,
String id,
Point p,
Dimensions d)
Creates a new
GraphicalObject with the given id and 3D coordinates for
the bounding box. |
LineSegment(LayoutPkgNamespaces layoutns,
Point start,
Point end)
Creates a new line segment with the two given points.
|
Point(Point orig)
Copy constructor.
|