Description:

Adds a new vertex to the end of the Vertex list.

Syntax:
public int Add(
double x,
double y,
double z
)
Parameters:
  • x
  • Type: double
  • X component of new vertex coordinate.
  • y
  • Type: double
  • Y component of new vertex coordinate.
  • z
  • Type: double
  • Z component of new vertex coordinate.
Returns:
Type: int
The index of the newly added vertex.
Available since:
5.0

Description:

Adds a new vertex to the end of the Vertex list.

Syntax:
public int Add(
float x,
float y,
float z
)
Parameters:
  • x
  • Type: float
  • X component of new vertex coordinate.
  • y
  • Type: float
  • Y component of new vertex coordinate.
  • z
  • Type: float
  • Z component of new vertex coordinate.
Returns:
Type: int
The index of the newly added vertex.
Available since:
5.0

Description:

Adds a new vertex to the end of the Vertex list.

Syntax:
public int Add(
Point3d vertex
)
Parameters:
  • vertex
  • Type: Point3d
  • Location of new vertex.
Returns:
Type: int
The index of the newly added vertex.
Available since:
5.0

Description:

Adds a new vertex to the end of the Vertex list.

Syntax:
public int Add(
Point3f vertex
)
Parameters:
  • vertex
  • Type: Point3f
  • Location of new vertex.
Returns:
Type: int
The index of the newly added vertex.
Available since:
5.0

Nothing found