Description:

Returns a new BoundingBox that represents the union of boxes a and b.

Syntax:
public static BoundingBox Union(
BoundingBox a,
BoundingBox b
)
Parameters:
Returns:
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:
public static BoundingBox Union(
BoundingBox box,
Point3d point
)
Parameters:
  • point
  • Type: Point3d
  • Point to include in the union.
Returns:
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:
public void Union(
BoundingBox other
)
Parameters:
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.

Syntax:
public void Union(
Point3d point
)
Parameters:
  • point
  • Type: Point3d
  • Point to include in the union.
Returns:
Type: void
Remarks:
If this bounding box is InValid then the union will be the BoundingBox containing only the point. If the point is InValid, this BoundingBox will remain unchanged.
Available since:
5.0

Nothing found