pushMatrix method
Pushes a copy of the current transformation matrix onto the matrix stack.
Implementation
void pushMatrix() {
_matrixStack.add(_currentMatrix.clone());
}
Pushes a copy of the current transformation matrix onto the matrix stack.
void pushMatrix() {
_matrixStack.add(_currentMatrix.clone());
}