Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Utility Class / EvaluateCurvature Method
First derivative
Second derivative
Unit tangent returned here
Curvature returned here

In This Topic
    EvaluateCurvature Method
    In This Topic

    Evaluates unit tangent and curvature from first and second derivatives.

    T = D1 / |D1|

    K = ( D2 - (D2 o T)*T )/( D1 o D1)

    Syntax
    'Declaration
     
    Public Shared Function EvaluateCurvature( _
       ByVal D1 As Vector3D, _
       ByVal D2 As Vector3D, _
       ByRef T As Vector3D, _
       ByRef K As Vector3D _
    ) As Boolean
    public static bool EvaluateCurvature( 
       Vector3D D1,
       Vector3D D2,
       out Vector3D T,
       out Vector3D K
    )

    Parameters

    D1
    First derivative
    D2
    Second derivative
    T
    Unit tangent returned here
    K
    Curvature returned here
    See Also