|
IMeshSetVertex Method (Int32, Double, Double, Double)
|
Set mesh vertex at index.
Namespace:
Karamba.Geometry
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxbool SetVertex(
int index,
double x,
double y,
double z
)
Function SetVertex (
index As Integer,
x As Double,
y As Double,
z As Double
) As Boolean
bool SetVertex(
int index,
double x,
double y,
double z
)
abstract SetVertex :
index : int *
x : float *
y : float *
z : float -> bool
Parameters
- index
- Type: SystemInt32
Vertex index. - x
- Type: SystemDouble
x-coordinate. - y
- Type: SystemDouble
y-coordinate. - z
- Type: SystemDouble
z-coordinate.
Return Value
Type:
BooleanTrue if the vertex at given index was updated successfully,
false if the index is out of range.
See Also