ExtrusionSetPathAndUp Method |
Allows to set the two points at the extremes and the up vector.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax public bool SetPathAndUp(
Point3d a,
Point3d b,
Vector3d up
)
Public Function SetPathAndUp (
a As Point3d,
b As Point3d,
up As Vector3d
) As Boolean
Parameters
- a
- Type: Rhino.GeometryPoint3d
The start point. - b
- Type: Rhino.GeometryPoint3d
The end point. - up
- Type: Rhino.GeometryVector3d
The up vector.
Return Value
Type:
Booleantrue if the operation succeeded; otherwise false.
Setting up=a-b will make the operation fail.
See Also