Click or drag to resize

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
)

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: Result
Commands.Result.Success if successful.
See Also