NurbSpline.CreateCurve(Int32, IList<Double>, IList<XYZ>, IList<Double>) Method

NurbSplineCreateCurve(Int32, IListDouble, IListXYZ, IListDouble) Method


Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 26.0.4.0 (26.0.4.0)
Syntax
public static Curve CreateCurve(
	int degree,
	IList<double> knots,
	IList<XYZ> controlPoints,
	IList<double> weights
)
Public Shared Function CreateCurve ( 
	degree As Integer,
	knots As IList(Of Double),
	controlPoints As IList(Of XYZ),
	weights As IList(Of Double)
) As Curve
public:
static Curve^ CreateCurve(
	int degree, 
	IList<double>^ knots, 
	IList<XYZ^>^ controlPoints, 
	IList<double>^ weights
)
static member CreateCurve : 
        degree : int * 
        knots : IList<float> * 
        controlPoints : IList<XYZ> * 
        weights : IList<float> -> Curve 

Parameters

degree  Int32
 
knots  IListDouble
 
controlPoints  IListXYZ
 
weights  IListDouble
 

Return Value

Curve
See Also