Click or drag to resize

NurbsCurveSetEndCondition Method (Boolean, NurbsCurveNurbsCurveEndConditionType, Point3d, Vector3d, Vector3d)

Set end condition of a NURBS curve to point, tangent and curvature.

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 6.0
Syntax
public bool SetEndCondition(
	bool bSetEnd,
	NurbsCurveNurbsCurveEndConditionType continuity,
	Point3d point,
	Vector3d tangent,
	Vector3d curvature
)

Parameters

bSetEnd
Type: SystemBoolean
true: set end of curve, false: set start of curve
continuity
Type: Rhino.GeometryNurbsCurveNurbsCurveEndConditionType
Position: set start or end point, Tangency: set point and tangent, Curvature: set point, tangent and curvature
point
Type: Rhino.GeometryPoint3d
point to set
tangent
Type: Rhino.GeometryVector3d
tangent to set
curvature
Type: Rhino.GeometryVector3d
curvature to set

Return Value

Type: Boolean
true on success, false on failure.
See Also