Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Curve Class / GetParamsFromLength Method
Sorted lengths along the curve (ascending order)
Corresponding parameter values

In This Topic
    GetParamsFromLength Method
    In This Topic
    Given a sorted array of lengths along the curve, finds the parameter values that correspond to them.
    Syntax
    'Declaration
     
    Public Function GetParamsFromLength( _
       ByVal lengths() As Double, _
       ByRef ts As Double() _
    ) As Boolean
    public bool GetParamsFromLength( 
       double[] lengths,
       out double[] ts
    )

    Parameters

    lengths
    Sorted lengths along the curve (ascending order)
    ts
    Corresponding parameter values

    Return Value

    True if all the operations were successful, false otherwise.
    See Also