Alright, so I’m trying to rotate a model, and I got front and back down:
Back:
ReadOnlyMatrix3 tempM3 = new Matrix3(1,0,0,
0,1,0,
0,0,-1);
colladaNode.setRotation(tempM3);
Front:
ReadOnlyMatrix3 tempM3 = new Matrix3(1,0,0,
0,1,0,
0,0,1);
colladaNode.setRotation(tempM3);
But when I tried to do the sides:
ReadOnlyMatrix3 tempM3 = new Matrix3(1,0,0,
0,1,0,
0,0,-0.5);
colladaNode.setRotation(tempM3);
or
ReadOnlyMatrix3 tempM3 = new Matrix3(1,0,0,
0,1,0,
0,0, 0.5);
colladaNode.setRotation(tempM3);
it doesn’t seem to work. my model still faces back or front.
Any idea why?