Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Curve Class / Curve Constructor / Curve Constructor(Int32,Double[],Point4D[],Boolean)
The curve degree
The knot vector
The control points list
If false, avoids all the checks (useless in GetNurbsForm() methods)

In This Topic
    Curve Constructor(Int32,Double[],Point4D[],Boolean)
    In This Topic
    Standard constructor.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal degree As Integer, _
       ByVal knotVector() As Double, _
       ByVal ctrlPoints() As Point4D, _
       Optional ByVal checkKnotsAndCtrlPts As Boolean _
    )
    public Curve( 
       int degree,
       double[] knotVector,
       Point4D[] ctrlPoints,
       bool checkKnotsAndCtrlPts
    )

    Parameters

    degree
    The curve degree
    knotVector
    The knot vector
    ctrlPoints
    The control points list
    checkKnotsAndCtrlPts
    If false, avoids all the checks (useless in GetNurbsForm() methods)
    See Also