Package org.jbox2d.collision.broadphase

Examples of org.jbox2d.collision.broadphase.DefaultBroadPhaseBuffer


  public World(Vec2 gravity, IWorldPool pool) {
    this(gravity, pool, new DynamicTree());
  }
 
  public World(Vec2 gravity, IWorldPool pool, BroadPhaseStrategy strategy) {
    this(gravity, pool, new DefaultBroadPhaseBuffer(strategy));
  }
View Full Code Here


  public World(Vec2 gravity, IWorldPool pool) {
    this(gravity, pool, new DynamicTree());
  }

  public World(Vec2 gravity, IWorldPool pool, BroadPhaseStrategy strategy) {
    this(gravity, pool, new DefaultBroadPhaseBuffer(strategy));
  }
View Full Code Here

TOP

Related Classes of org.jbox2d.collision.broadphase.DefaultBroadPhaseBuffer

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.