Description:
Bounding box solver. Gets the world axis aligned bounding box for the geometry.
Syntax:
Parameters:
- accurate
- Type: bool
- If true, a physically accurate bounding box will be computed. If not, a bounding box estimate will be computed. For some geometry types there is no difference between the estimate and the accurate bounding box. Estimated bounding boxes can be computed much (much) faster than accurate (or "tight") bounding boxes. Estimated bounding boxes are always similar to or larger than accurate bounding boxes.
Returns:
Type: BoundingBox
The bounding box of the geometry in world coordinates or BoundingBox.Empty if not bounding box could be found.
Available since:
5.0
Description:
Aligned Bounding box solver. Gets the plane aligned bounding box.
Syntax:
Parameters:
- plane
- Type: Plane
- Orientation plane for BoundingBox.
- worldBox
- Type: Box
- Aligned box in World coordinates.
Returns:
Type: BoundingBox
A BoundingBox in plane coordinates.
Available since:
5.0
Description:
Aligned Bounding box solver. Gets the plane aligned bounding box.
Syntax:
Parameters:
- plane
- Type: Plane
- Orientation plane for BoundingBox.
Returns:
Type: BoundingBox
A BoundingBox in plane coordinates.
Available since:
5.0
Description:
Aligned Bounding box solver. Gets the world axis aligned bounding box for the transformed geometry.
Syntax:
virtual
Parameters:
- xform
- Type: Transform
- Transformation to apply to object prior to the BoundingBox computation. The geometry itself is not modified.
Returns:
Type: BoundingBox
The accurate bounding box of the transformed geometry in world coordinates or BoundingBox.Empty if not bounding box could be found.
Available since:
5.0