pushMatrix method

void pushMatrix()

Pushes a copy of the current transformation matrix onto the matrix stack.

Implementation

void pushMatrix() {
  _matrixStack.add(_currentMatrix.clone());
}