Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Solid Class / FromTriangles Method / FromTriangles(IList<Point3D>,IList<IndexTriangle>) Method
List of vertices
List of index triangles

In This Topic
    FromTriangles(IList<Point3D>,IList<IndexTriangle>) Method
    In This Topic
    Creates a solid from a list of vertices and triangles.
    Syntax
    'Declaration
     
    Public Overloads Shared Function FromTriangles( _
       ByVal vList As IList(Of Point3D), _
       ByVal tList As IList(Of IndexTriangle) _
    ) As Solid
    public static Solid FromTriangles( 
       IList<Point3D> vList,
       IList<IndexTriangle> tList
    )

    Parameters

    vList
    List of vertices
    tList
    List of index triangles

    Return Value

    True if the operation is successfull, false otherwise.
    See Also