notrodash

Untitled

Jul 9th, 2012
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.23 KB | None | 0 0
  1. @Override
  2.     public void resize(int width, int height)
  3.     {
  4.         float aspectRatio = (float) width / (float) height;
  5.         camera = new PerspectiveCamera(67, 2.0f * aspectRatio, 2.0f);
  6.         camera.translate(0,0,10);
  7.         camera.near = 0.1f;
  8.     }
Advertisement
Add Comment
Please, Sign In to add comment