Home | History | Annotate | Download | only in bullet

Lines Matching defs:PhysicsSpace

79  * <p>PhysicsSpace - The central jbullet-jme physics space</p>
82 public class PhysicsSpace {
96 private static ThreadLocal<PhysicsSpace> physicsSpaceTL = new ThreadLocal<PhysicsSpace>();
122 * Get the current PhysicsSpace <b>running on this thread</b><br/>
123 * For parallel physics, this can also be called from the OpenGL thread to receive the PhysicsSpace
124 * @return the PhysicsSpace running on this thread
126 public static PhysicsSpace getPhysicsSpace() {
134 public static void setLocalThreadPhysicsSpace(PhysicsSpace space) {
138 public PhysicsSpace() {
142 public PhysicsSpace(BroadphaseType broadphaseType) {
146 public PhysicsSpace(Vector3f worldMin, Vector3f worldMax) {
150 public PhysicsSpace(Vector3f worldMin, Vector3f worldMax, BroadphaseType broadphaseType) {
232 final PhysicsSpace space = this;
247 Logger.getLogger(PhysicsSpace.class.getName()).log(Level.SEVERE, null, ex);
518 Logger.getLogger(PhysicsSpace.class.getName()).log(Level.INFO, "Adding ghost object {0} to physics space.", node.getObjectId());
523 Logger.getLogger(PhysicsSpace.class.getName()).log(Level.INFO, "Removing ghost object {0} from physics space.", node.getObjectId());
528 Logger.getLogger(PhysicsSpace.class.getName()).log(Level.INFO, "Adding character {0} to physics space.", node.getObjectId());
535 Logger.getLogger(PhysicsSpace.class.getName()).log(Level.INFO, "Removing character {0} from physics space.", node.getObjectId());
556 Logger.getLogger(PhysicsSpace.class.getName()).log(Level.INFO, "Adding RigidBody {0} to physics space.", node.getObjectId());
558 Logger.getLogger(PhysicsSpace.class.getName()).log(Level.INFO, "Adding vehicle constraint {0} to physics space.", ((PhysicsVehicle) node).getVehicleId());
566 Logger.getLogger(PhysicsSpace.class.getName()).log(Level.INFO, "Removing vehicle constraint {0} from physics space.", ((PhysicsVehicle) node).getVehicleId());
569 Logger.getLogger(PhysicsSpace.class.getName()).log(Level.INFO, "Removing RigidBody {0} from physics space.", node.getObjectId());
575 Logger.getLogger(PhysicsSpace.class.getName()).log(Level.INFO, "Adding Joint {0} to physics space.", joint.getObjectId());
581 Logger.getLogger(PhysicsSpace.class.getName()).log(Level.INFO, "Removing Joint {0} from physics space.", joint.getObjectId());
587 * Sets the gravity of the PhysicsSpace, set before adding physics objects!
694 Logger.getLogger(PhysicsSpace.class.getName()).log(Level.WARNING, "Trying to sweep test with incompatible mesh shape!");
710 Logger.getLogger(PhysicsSpace.class.getName()).log(Level.WARNING, "Trying to sweep test with incompatible mesh shape!");
734 * destroys the current PhysicsSpace so that a new one can be created