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

Creates a solid from a list of vertices and triangles.
Public Shared Function FromTriangles(Of  _ 
T)( _ 
ByVal vList As IList(Of Point3D), _ 
ByVal tList As IList(Of IndexTriangle), _ 
ByVal smoothingAngle As Double, _ 
ByVal check As Boolean
) As T
This language is not supported or no code example is available.
public static T FromTriangles<T>( 
IList<Point3D> vList
IList<IndexTriangle> tList
double smoothingAngle
bool check 
)
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

smoothingAngle
double

Smoothing angle in radians

check
bool

If true, tries to fix triangles that don't match (slower).

Return Value

T

True if the operation is successful, false otherwise.

.NET Framework

Supported in: 4.5, 4.6, 4.7

In this article

Definition