 | CMESHAddFace Method |
Adds a face to a patch in a mesh
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic int AddFace(
string mesh_name,
int patch_id,
int v0,
int v1,
int v2
)
public int AddFace(
string mesh_name,
int patch_id,
int v0,
int v1,
int v2
)
Public Function AddFace (
mesh_name As String,
patch_id As Integer,
v0 As Integer,
v1 As Integer,
v2 As Integer
) As Integer
Public Function AddFace (
mesh_name As String,
patch_id As Integer,
v0 As Integer,
v1 As Integer,
v2 As Integer
) As Integer
public:
int AddFace(
String^ mesh_name,
int patch_id,
int v0,
int v1,
int v2
)
public:
int AddFace(
String^ mesh_name,
int patch_id,
int v0,
int v1,
int v2
)
member AddFace :
mesh_name : string *
patch_id : int *
v0 : int *
v1 : int *
v2 : int -> int
member AddFace :
mesh_name : string *
patch_id : int *
v0 : int *
v1 : int *
v2 : int -> int
Parameters
- mesh_name
- Type: SystemString
Mesh Name - patch_id
- Type: SystemInt32
Patch ID - v0
- Type: SystemInt32
Vertex index 0 for the face - v1
- Type: SystemInt32
Vertex index 1 for the face - v2
- Type: SystemInt32
Vertex index 2 for the face
Return Value
Type:
Int32Returns the face index of the added face
See Also