BoundingBox2D
Overview
BoundingBox2D is a class in Aspose.3D FOSS for Python.
The axis-aligned bounding box for Vector2
This class declares 3 methods for BoundingBox2D objects in Python programs.
Available methods include: __init__, merge.
All public members are accessible to any Python application after installing the Aspose.3D FOSS for Python package.
Properties: INFINITE, NULL, extent, maximum, minimum.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
extent | 'BoundingBoxExtent' | Read | Gets the extent. |
minimum | 'Vector2' | Read | Gets the minimum. |
maximum | 'Vector2' | Read | Gets the maximum. |
NULL | 'BoundingBox2D' | Read | Gets the null. |
INFINITE | 'BoundingBox2D' | Read | Gets the infinite. |
Methods
| Signature | Description |
|---|---|
__init__(minimum: 'Vector2', maximum: 'Vector2') | Calls init(minimum, maximum) on this BoundingBox2D instance. |
merge(pt: 'Vector2') | Calls merge(pt) on this BoundingBox2D instance. |
merge(bb: 'BoundingBox2D') | Calls merge(bb) on this BoundingBox2D instance. |