|
Mesh3 Constructor (Int32, Int32, T:TriangulationFCsharp)
|
Initializes a new instance of the
Mesh3 class.
Create mesh with an estimated number of vertices and faces, and an object of the triangulation wrapper class.
Namespace:
Karamba.Geometry
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic Mesh3(
int nVertices,
int nFaces,
TriangulationFCsharp e
)
Public Sub New (
nVertices As Integer,
nFaces As Integer,
e As TriangulationFCsharp
)
public:
Mesh3(
int nVertices,
int nFaces,
TriangulationFCsharp^ e
)
new :
nVertices : int *
nFaces : int *
e : TriangulationFCsharp -> Mesh3Parameters
- nVertices
- Type: SystemInt32
estimated number of vertices. - nFaces
- Type: SystemInt32
estimated number of faces. - e
- Type: TriangulationFCsharp
the triangulation.
See Also