Description:

Constructs a bounding box from numeric extremes.

Syntax:
public BoundingBox(
double minX,
double minY,
double minZ,
double maxX,
double maxY,
double maxZ
)
Parameters:
  • minX
  • Type: double
  • Lower extreme for box X size.
  • minY
  • Type: double
  • Lower extreme for box Y size.
  • minZ
  • Type: double
  • Lower extreme for box Z size.
  • maxX
  • Type: double
  • Upper extreme for box X size.
  • maxY
  • Type: double
  • Upper extreme for box Y size.
  • maxZ
  • Type: double
  • Upper extreme for box Z size.
Available since:
5.0

Description:

Constructs a bounding box from a collection of points.

Syntax:
public BoundingBox(
IEnumerable<Point3d> points,
Transform xform
)
Parameters:
  • points
  • Type: System.Collections.Generic.IEnumerable<Point3d>
  • Points to include in the bounding box.
Available since:
6.0

Description:

Constructs a bounding box from a collection of points.

Syntax:
public BoundingBox(
IEnumerable<Point3d> points
)
Parameters:
  • points
  • Type: System.Collections.Generic.IEnumerable<Point3d>
  • Points to include in the bounding box.
Available since:
5.0

Description:

Constructs a new bounding box from two corner points.

Syntax:
public BoundingBox(
Point3d min,
Point3d max
)
Parameters:
  • min
  • Type: Point3d
  • Point containing all the minimum coordinates.
  • max
  • Type: Point3d
  • Point containing all the maximum coordinates.
Available since:
5.0

BoundingBox constructor

Class:  Rhino.Geometry.BoundingBox

Nothing found