Package org.jbox2d.pooling

Examples of org.jbox2d.pooling.WorldPool


   * @param output
   * @param input
   * @return
   */
  public final boolean raycast(final RayCastOutput output, final RayCastInput input) {
    return raycast(output, input, new WorldPool(4, 4));
  }
View Full Code Here


 
  private ContactRegister[][] contactStacks = new ContactRegister[ShapeType.TYPE_COUNT][ShapeType.TYPE_COUNT];
 
  public World(Vec2 gravity, boolean doSleep){
    this(gravity, doSleep,
        new WorldPool(WORLD_POOL_SIZE, WORLD_POOL_CONTAINER_SIZE));
  }
View Full Code Here

TOP

Related Classes of org.jbox2d.pooling.WorldPool

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.