Solid.FromTriangles<T> (IList<Point3D>, IList<IndexTriangle>) Method

Creates a solid from a list of vertices and triangles.
Public Shared Function FromTriangles(Of  _ 
T As {Solid, New})( _ 
ByVal vList As IList(Of Point3D), _ 
ByVal tList As IList(Of IndexTriangle) _ 
) As T
This language is not supported or no code example is available.
public static T FromTriangles<T>( 
IList<Point3D> vList
IList<IndexTriangle> tList 

where T : Solid, new()
This language is not supported or no code example is available.

Type Parameters

T

Parameters

vList
IList<Point3D>

List of vertices

tList
IList<IndexTriangle>

List of index triangles

Return Value

T

True if the operation is successfull, false otherwise.

.NET Framework

Supported in: 4.5, 4.6, 4.7

In this article

Definition