Description:
Returns a new BoundingBox that represents the union of boxes a and b.
Syntax:
Parameters:
- a
- Type: BoundingBox
- First box to include in union.
- b
- Type: BoundingBox
- Second box to include in union.
Returns:
Type: BoundingBox
The BoundingBox that contains both a and b.
Remarks:
Invalid boxes are ignored and will not affect the union.
Available since:
5.0
Description:
Returns a new BoundingBox that represents the union of a bounding box and a point.
Syntax:
Parameters:
- box
- Type: BoundingBox
- Box to include in the union.
- point
- Type: Point3d
- Point to include in the union.
Returns:
Type: BoundingBox
The BoundingBox that contains both the box and the point.
Remarks:
Invalid boxes and points are ignored and will not affect the union.
Available since:
5.0
Description:
Updates this BoundingBox to represent the union of itself and another box.
Syntax:
Parameters:
- other
- Type: BoundingBox
- Box to include in this union.
Returns:
Type: void
Remarks:
If either this BoundingBox or the other BoundingBox is InValid, the Valid BoundingBox will be the only one included in the union.
Available since:
5.0
Description:
Updates this BoundingBox to represent the union of itself and a point.