Extent |
LeafShapeGroup.getBoundingBox() |
|
Extent |
NonleafShapeGroup.getBoundingBox() |
|
abstract Extent |
ShapeGroup.getBoundingBox() |
Returns the smallest axis-aligned rectangle that contains all shapes contained directly or indirectly by
this shape group.
|
static Extent |
Extent.ofLeftTopRightBottom(int left,
int top,
int right,
int bottom) |
Returns an object representing the extent defined by the given left, top, right, and bottom.
|
static Extent |
Extent.ofLeftTopWidthHeight(int left,
int top,
int width,
int height) |
Returns an object representing the extent defined by the given left, top, width, and height.
|
Extent |
Extent.withBottom(int newBottom) |
Returns an object that has the given bottom coordinate and the same
left, top, and right coordinate as this object.
|
Extent |
Extent.withHeight(int newHeight) |
Returns an object that has the given height and the same left, top,
and right coordinate as this object.
|
Extent |
Extent.withLeft(int newLeft) |
Returns an object that has the given left coordinate and the same
right, top, and bottom coordinate as this object.
|
Extent |
Extent.withRight(int newRight) |
Returns an object that has the given right coordinate and the same
left, top, and bottom coordinate as this object.
|
Extent |
Extent.withTop(int newTop) |
Returns an object that has the given top coordinate and the same
left, right, and bottom coordinate as this object.
|
Extent |
Extent.withWidth(int newWidth) |
Returns an object that has the given width and the same left, top,
and bottom coordinate as this object.
|