Package org.jbox2d.pooling

Examples of org.jbox2d.pooling.IWorldPool


    benchmark.go();
  }

  public void setupTest(int testNum) {
    World w;
    IWorldPool pool = new DefaultWorldPool(50, 50);
    if (testNum == 0) {
      w = new World(new Vec2(0.0f, -10.0f), pool);
    } else {
      w = new World(new Vec2(0, -10), pool, new DynamicTreeFlatNodes());
    }
View Full Code Here

TOP

Related Classes of org.jbox2d.pooling.IWorldPool

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.