MeshGeometry.MeshGeometry Constructors
Initializes a new instance of the MeshGeometry class.
Overload List
Name | Description | |
---|---|---|
Public method | MeshGeometry() | Initializes a new empty instance of the MeshGeometry class. |
Public method | MeshGeometry(PointCollection vertices, TriangleCollection triangles) | Initializes a new instance of the MeshGeometry class that takes ownership of the specified vertices and triangles. |
Public method | MeshGeometry(IEnumerable< Point > vertices, IEnumerable< Triangle > triangles) | Initializes new instance of the MeshGeometry class with copies of the given vertices and triangles. |
MeshGeometry()
Initializes a new empty instance of the MeshGeometry class.Syntax
public MeshGeometry ()
MeshGeometry(PointCollection vertices, TriangleCollection triangles)
Initializes a new instance of the MeshGeometry class that takes ownership of the specified vertices and triangles.Syntax
public MeshGeometry (
PointCollection vertices,
TriangleCollection triangles
)
Parameters
A collection of vertices.
A collection of triangles.
Remarks
This constructor throws an exception if the new MeshGeometry cannot take over ownership of vertices and triangles.
MeshGeometry(IEnumerable< Point > vertices, IEnumerable< Triangle > triangles)
Initializes new instance of the MeshGeometry class with copies of the given vertices and triangles.Syntax
public MeshGeometry (
IEnumerable< Point > vertices,
IEnumerable< Triangle > triangles
)
Parameters
A collection of vertices.
A collection of triangles.
Platforms
Windows, Linux, Android