BoundingBox constructor
init
Constructs a new instance of BoundingBox
def __init__(self):
...
init
Initialize a finite bounding box with given minimum and maximum corner
def __init__(self, minimum, maximum):
...
| Parameter | Type | Description |
|---|---|---|
| minimum | Vector3 | The minimum corner |
| maximum | Vector3 | The maximum corner |
init
Initialize a finite bounding box with given minimum and maximum corner
def __init__(self, min_x, min_y, min_z, max_x, max_y, max_z):
...
| Parameter | Type | Description |
|---|---|---|
| min_x | float | |
| min_y | float | |
| min_z | float | |
| max_x | float | |
| max_y | float | |
| max_z | float |
See Also
- module
aspose.threed.utilities - class
BoundingBox