Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Surface Class / MakeCurveFromPoints Method
The list of points to be approximated
Tolerance used for local approximation
The resulting approximated curve

In This Topic
    MakeCurveFromPoints Method
    In This Topic
    Builds a local approximation from the input points.
    Syntax
    'Declaration
     
    Protected Function MakeCurveFromPoints( _
       ByVal ptList() As PointTangent, _
       ByVal tol As Double, _
       ByRef parametric As Curve _
    ) As Boolean
    protected bool MakeCurveFromPoints( 
       PointTangent[] ptList,
       double tol,
       out Curve parametric
    )

    Parameters

    ptList
    The list of points to be approximated
    tol
    Tolerance used for local approximation
    parametric
    The resulting approximated curve
    See Also