Exemplo n.º 1
0
void MatrixStack::push(const math::Transform& transform){
	glm::mat4x4 m;
	transform.getMatrix(m);
	push(m);
}
Exemplo n.º 2
0
void MatrixStack::pushAndConcat(const math::Transform& transform){
	glm::mat4x4 t;
	transform.getMatrix(t);

	pushAndConcat(t);
}