pushVertex method

void pushVertex(
  1. double x,
  2. double y,
  3. double z
)

Implementation

void pushVertex(double x, double y, double z) {
  _vertex = getNextVertexInPool();
  _vertex.position.set(x, y, z);
  projectVertex(_vertex);
}