Box Constructor (Plane, Interval, Interval, Interval) |
Initializes a new box from a base Plane and three Intervals.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax public Box(
Plane basePlane,
Interval xSize,
Interval ySize,
Interval zSize
)
Public Sub New (
basePlane As Plane,
xSize As Interval,
ySize As Interval,
zSize As Interval
)
Parameters
- basePlane
- Type: Rhino.GeometryPlane
Orientation plane of the box. - xSize
- Type: Rhino.GeometryInterval
Dimensions along the base plane X-Axis. - ySize
- Type: Rhino.GeometryInterval
Dimensions along the base plane Y-Axis. - zSize
- Type: Rhino.GeometryInterval
Dimensions along the base plane Z-Axis.
See Also