Gets the list of mesh vertices.

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

Syntax

C#
public List<MeshVertex> MeshVertices { get; }
Visual Basic (Declaration)
Public ReadOnly Property MeshVertices As List(Of MeshVertex)
Visual C++
public:
property List<MeshVertex^>^ MeshVertices {
	List<MeshVertex^>^ get ();
}

Field Value

A list of mesh vertices.

Remarks

The list may contain non-valid mesh vertices if the mesh has been reduced. Use GetActiveMeshVertices()()() to get the vertices that are part of the actual mesh or check if a mesh vertex is part of the current mesh using the IsDisposed method.

See Also