13 lines
140 B
C++
13 lines
140 B
C++
|
|
#include "Transform.h"
|
|
|
|
void Transform::push()
|
|
{
|
|
m_matrices.push(m_matrices.top());
|
|
}
|
|
|
|
void Transform::pop()
|
|
{
|
|
m_matrices.pop();
|
|
}
|