Model on it's side

I loaded in a model and it's on it's side. I need to rotate it about 90

no problem  :smiley:



Matrix3f rotMatrix = new Matrix3f();
rotMatrix.fromAngleAxis(FastMath.PI/2, new Vector3f(1,0,0)); //x-axis
myModel.setLocalRotation(rotMatrix);



Cool  :smiley: