Gets the reconstructed surface in form of triangles. A quad will automatically be converted into two triangles.

Namespace:  ceometric.ComputationalGeometry
Assembly:  ceometric.ComputationalGeometry (in ceometric.ComputationalGeometry.dll) Version: 2.4.0.0 (2.4.0.0)

Syntax

C#
public List<Triangle> GetSurfaceAsTriangleList(
	ref int failed
)
Visual Basic (Declaration)
Public Function GetSurfaceAsTriangleList ( _
	ByRef failed As Integer _
) As List(Of Triangle)
Visual C++
public:
List<Triangle^>^ GetSurfaceAsTriangleList(
	int% failed
)

Parameters

failed
Type: System..::.Int32 %
The number of failed conversions. This happens if a tri or quad is degenerate.

Return Value

Returns a list of triangles representing the reconstructed surface.

See Also