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

NameTypeAccessDescription
extent'BoundingBoxExtent'ReadGets the extent.
minimum'Vector2'ReadGets the minimum.
maximum'Vector2'ReadGets the maximum.
NULL'BoundingBox2D'ReadGets the null.
INFINITE'BoundingBox2D'ReadGets the infinite.

Methods

SignatureDescription
__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.

See Also