BoundingBoxPointAt Method |
Evaluates the bounding box with normalized parameters.
The box has idealized side length of 1x1x1.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax public Point3d PointAt(
double tx,
double ty,
double tz
)
Public Function PointAt (
tx As Double,
ty As Double,
tz As Double
) As Point3d
Parameters
- tx
- Type: SystemDouble
Normalized (between 0 and 1 is inside the box) parameter along the X direction. - ty
- Type: SystemDouble
Normalized (between 0 and 1 is inside the box) parameter along the Y direction. - tz
- Type: SystemDouble
Normalized (between 0 and 1 is inside the box) parameter along the Z direction.
Return Value
Type:
Point3dThe point at the {tx, ty, tz} parameters.
See Also