RhinoGetGetBoxWithCounts Method |
Gets a 3d box with prompts for counts in X, Y and Z directions.
Namespace:
Rhino.Input
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 6.0
Syntax public static Result GetBoxWithCounts(
int xMin,
ref int xCount,
int yMin,
ref int yCount,
int zMin,
ref int zCount,
out Point3d[] corners
)
Public Shared Function GetBoxWithCounts (
xMin As Integer,
ByRef xCount As Integer,
yMin As Integer,
ByRef yCount As Integer,
zMin As Integer,
ByRef zCount As Integer,
<OutAttribute> ByRef corners As Point3d()
) As Result
Parameters
- xMin
- Type: SystemInt32
Minimum value allowed for count in the x direction. - xCount
- Type: SystemInt32
Count in the x direction. - yMin
- Type: SystemInt32
Minimum value allowed for count in the y direction. - yCount
- Type: SystemInt32
Count in the y direction. - zMin
- Type: SystemInt32
Minimum value allowed for count in the z direction. - zCount
- Type: SystemInt32
Count in the z direction. - corners
- Type: Rhino.GeometryPoint3d
corners of the bottom rectangle in counter-clockwise order, followed by top rectangle.
Return Value
Type:
ResultCommands.Result.Success if successful.
See Also