CurveCreateControlPointCurve Method (IEnumerablePoint3d, Int32) |
Constructs a curve from a set of control-point locations.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax public static Curve CreateControlPointCurve(
IEnumerable<Point3d> points,
int degree
)
Public Shared Function CreateControlPointCurve (
points As IEnumerable(Of Point3d),
degree As Integer
) As Curve
Parameters
- points
- Type: System.Collections.GenericIEnumerablePoint3d
Control points. - degree
- Type: SystemInt32
Degree of curve. The number of control points must be at least degree+1.
Return Value
Type:
Curve[Missing <returns> documentation for "M:Rhino.Geometry.Curve.CreateControlPointCurve(System.Collections.Generic.IEnumerable{Rhino.Geometry.Point3d},System.Int32)"]
See Also