Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / UtilityEx Class / RotationMinimizingFrames Method
The plane at the beginning of the curve. It can be null
The array of points along the curve where the planes will be computed
The array of tangents at each point

In This Topic
    RotationMinimizingFrames Method
    In This Topic
    Computes a set of planes along the curve that are perpendicular to the curve and are oriented in a way that avoids abrupt changes in the directions of the X and Y axes.
    Syntax
    'Declaration
     
    Public Shared Function RotationMinimizingFrames( _
       ByVal prevFrame As Plane, _
       ByVal x() As Point3D, _
       ByVal t() As Vector3D _
    ) As Plane()
    public static Plane[] RotationMinimizingFrames( 
       Plane prevFrame,
       Point3D[] x,
       Vector3D[] t
    )

    Parameters

    prevFrame
    The plane at the beginning of the curve. It can be null
    x
    The array of points along the curve where the planes will be computed
    t
    The array of tangents at each point

    Return Value

    The array of planes.
    See Also