Python Script Engine
7.2
GL Studio Editor Python Script API
|
Public Member Functions | |
VertexArray () | |
void | Insert (Vertex &v) |
unsigned int | GetCount () |
Vertex * | GetVertexAtIndex (int index) |
Common editor interface Vertex array.
If the VertexArray instance is empty, it will return 'False' in comparison checks.
VertexArray::VertexArray | ( | ) |
default ctor
unsigned int VertexArray::GetCount | ( | ) |
get the number of elements in the array
Vertex* VertexArray::GetVertexAtIndex | ( | int | index | ) |
get the vertex at the given index in the array
index | the index of the vertex to retrieve |
void VertexArray::Insert | ( | Vertex & | v | ) |
insert the given vertex at the end of the array
v | vertex to insert |