Package nexus.model.structs

Examples of nexus.model.structs.Camera


  public static final int TEST_ITERATIONS = 2; // default is 5, but this can be annoying for dev
  public static Model world;
 
  @BeforeClass
  public static void testSetup() {
    world = new Model(new Camera(new Vector3(0f, 0f, 0f), 0f, 0f, 0f, false));
  }
View Full Code Here


      e.printStackTrace();
      System.exit(0);
    }
   
    // start the nexus.mvc framework
    Model world = new Model(new Camera(INIT_CAMERA_POSITION, 0.0f, 0.0f, INIT_SENSITIVITY, CAMERA_INVERT));
    View view = new View(world, INIT_RENDER_DISTANCE);
    @SuppressWarnings("unused")
    Controller controller = new Controller(world);

    view.init();
View Full Code Here

TOP

Related Classes of nexus.model.structs.Camera

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.