|
RhinoMeshAddVertex Method (Double, Double, Double)
|
Adds a new vertex to the end of the Vertex list.
Namespace:
Karamba.GHopper.Geometry
Assembly:
Karamba3D (in Karamba3D.dll) Version: 2.2.0.5 (2.2.0.5)
Syntaxpublic int AddVertex(
double x,
double y,
double z
)
Public Function AddVertex (
x As Double,
y As Double,
z As Double
) As Integer
public:
virtual int AddVertex(
double x,
double y,
double z
) sealed
abstract AddVertex :
x : float *
y : float *
z : float -> int
override AddVertex :
x : float *
y : float *
z : float -> int
Parameters
- x
- Type: SystemDouble
X component of new vertex coordinate. - y
- Type: SystemDouble
Y component of new vertex coordinate. - z
- Type: SystemDouble
Z component of new vertex coordinate.
Return Value
Type:
Int32The index of the newly added vertex.
Implements
IMeshAddVertex(Double, Double, Double)
See Also