#include "Transform.h" void Transform::push() { m_matrices.push(m_matrices.top()); } void Transform::pop() { m_matrices.pop(); }