public interface BoxData
Modifier and Type | Method and Description |
---|---|
void |
clearGeoBoundingBox()
Clears the bounding box and removes the extension point.
|
Box |
getGeoBoundingBox()
Gets the bounding box of this entity.
|
void |
setGeoBoundingBox(Box boundingBox)
Sets the bounding box for this entity based on a
Box extension. |
void |
setGeoBoundingBox(Point lowerLeft,
Point upperRight)
Sets the bounding box based on two
Point objects. |
void setGeoBoundingBox(Point lowerLeft, Point upperRight)
Point
objects. If there is an
existing Box on this object, the new points will be copied into the
existing box rather than creating a new box.lowerLeft
- the lower left coordinate of the box.upperRight
- the upper right coordinate of the box.void setGeoBoundingBox(Box boundingBox)
Box
extension. If
there is an existing Box on this object, the new box will have its points
copied into the existing box rather than using the passed-in box.boundingBox
- the box that bounds this entity.Box getGeoBoundingBox()
void clearGeoBoundingBox()