예제 #1
0
파일: MatrixStack.cpp 프로젝트: spiricn/Wt
void MatrixStack::push(const math::Transform& transform){
	glm::mat4x4 m;
	transform.getMatrix(m);
	push(m);
}
예제 #2
0
파일: MatrixStack.cpp 프로젝트: spiricn/Wt
void MatrixStack::pushAndConcat(const math::Transform& transform){
	glm::mat4x4 t;
	transform.getMatrix(t);

	pushAndConcat(t);
}