Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Curve Class / GlobalApproximation Method
The list of points to approximate
The degree of the approximation curve
The maximum error allowed

In This Topic
    GlobalApproximation Method
    In This Topic
    Global approximation of a curve bounded to a certain error.
    Syntax
    'Declaration
     
    Public Shared Function GlobalApproximation( _
       ByVal Q As IList(Of Point3D), _
       ByVal deg As Integer, _
       ByVal err As Double _
    ) As Curve
    public static Curve GlobalApproximation( 
       IList<Point3D> Q,
       int deg,
       double err
    )

    Parameters

    Q
    The list of points to approximate
    deg
    The degree of the approximation curve
    err
    The maximum error allowed

    Return Value

    The approximated curve if the operation is successful, null/Nothing otherwise.
    See Also