Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2014
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. {
  2. rotX.setIdentity();
  3. rotX.rotX(const_rotation.y);
  4. rotY.setIdentity();
  5. rotY.rotY(const_rotation.x);
  6.  
  7. view.mul(rotY);
  8. view.mul(rotX);
  9.  
  10. Vector3f translation = new Vector3f(const_position);
  11. translation.negate();
  12. view.setTranslation(translation);
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement