Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Utility Class / CompactNormals Method
The list of original normals
The list of triangles
The list of compacted normals

In This Topic
    CompactNormals Method
    In This Topic
    Removes orphan normals.
    Syntax
    'Declaration
     
    Public Shared Function CompactNormals( _
       ByVal original As IList(Of Vector3D), _
       ByVal triangles As IList(Of IndexTriangle), _
       ByRef compacted As Vector3D() _
    ) As Integer
    public static int CompactNormals( 
       IList<Vector3D> original,
       IList<IndexTriangle> triangles,
       out Vector3D[] compacted
    )

    Parameters

    original
    The list of original normals
    triangles
    The list of triangles
    compacted
    The list of compacted normals

    Return Value

    The number of orphan normals removed.
    See Also