Click or drag to resize

Mesh Constructor (IEnumerableVector3, IEnumerableInt32, IEnumerableMeshEdge)

imbVeles Framework: imbSCI | imbACE | imbNLP | imbWEM | imbWBI
Initializes a new instance of the Mesh class.

Namespace:  netDxf.Entities
Assembly:  netDXF.Standard (in netDXF.Standard.dll) Version: 2.1.1
Syntax
C#
public Mesh(
	IEnumerable<Vector3> vertexes,
	IEnumerable<int[]> faces,
	IEnumerable<MeshEdge> edges
)
Request Example View Source

Parameters

vertexes
Type: System.Collections.GenericIEnumerableVector3
Mesh vertex list.
faces
Type: System.Collections.GenericIEnumerableInt32
Mesh faces list.
edges
Type: System.Collections.GenericIEnumerableMeshEdge
Mesh edges list, this parameter is only really useful when it is required to assign creases values to edges.
See Also