Home | History | Annotate | Download | only in bullet

Lines Matching defs:PhysicsSpace

61  * <p>PhysicsSpace - The central jbullet-jme physics space</p>
64 public class PhysicsSpace {
79 private static ThreadLocal<PhysicsSpace> physicsSpaceTL = new ThreadLocal<PhysicsSpace>();
106 * Get the current PhysicsSpace <b>running on this thread</b><br/>
107 * For parallel physics, this can also be called from the OpenGL thread to receive the PhysicsSpace
108 * @return the PhysicsSpace running on this thread
110 public static PhysicsSpace getPhysicsSpace() {
118 public static void setLocalThreadPhysicsSpace(PhysicsSpace space) {
122 public PhysicsSpace() {
126 public PhysicsSpace(BroadphaseType broadphaseType) {
130 public PhysicsSpace(Vector3f worldMin, Vector3f worldMax) {
134 public PhysicsSpace(Vector3f worldMin, Vector3f worldMax, BroadphaseType broadphaseType) {
194 Logger.getLogger(PhysicsSpace.class.getName()).log(Level.SEVERE, null, ex);
253 // final PhysicsSpace space = this;
268 // Logger.getLogger(PhysicsSpace.class.getName()).log(Level.SEVERE, null, ex);
568 Logger.getLogger(PhysicsSpace.class.getName()).log(Level.INFO, "Adding ghost object {0} to physics space.", Long.toHexString(node.getObjectId()));
573 Logger.getLogger(PhysicsSpace.class.getName()).log(Level.INFO, "Removing ghost object {0} from physics space.", Long.toHexString(node.getObjectId()));
578 Logger.getLogger(PhysicsSpace.class.getName()).log(Level.INFO, "Adding character {0} to physics space.", Long.toHexString(node.getObjectId()));
586 Logger.getLogger(PhysicsSpace.class.getName()).log(Level.INFO, "Removing character {0} from physics space.", Long.toHexString(node.getObjectId()));
609 Logger.getLogger(PhysicsSpace.class.getName()).log(Level.INFO, "Adding RigidBody {0} to physics space.", node.getObjectId());
611 Logger.getLogger(PhysicsSpace.class.getName()).log(Level.INFO, "Adding vehicle constraint {0} to physics space.", Long.toHexString(((PhysicsVehicle) node).getVehicleId()));
618 Logger.getLogger(PhysicsSpace.class.getName()).log(Level.INFO, "Removing vehicle constraint {0} from physics space.", Long.toHexString(((PhysicsVehicle) node).getVehicleId()));
621 Logger.getLogger(PhysicsSpace.class.getName()).log(Level.INFO, "Removing RigidBody {0} from physics space.", Long.toHexString(node.getObjectId()));
627 Logger.getLogger(PhysicsSpace.class.getName()).log(Level.INFO, "Adding Joint {0} to physics space.", Long.toHexString(joint.getObjectId()));
634 Logger.getLogger(PhysicsSpace.class.getName()).log(Level.INFO, "Removing Joint {0} from physics space.", Long.toHexString(joint.getObjectId()));
641 * Sets the gravity of the PhysicsSpace, set before adding physics objects!
752 // Logger.getLogger(PhysicsSpace.class.getName()).log(Level.WARNING, "Trying to sweep test with incompatible mesh shape!");
768 // Logger.getLogger(PhysicsSpace.class.getName()).log(Level.WARNING, "Trying to sweep test with incompatible mesh shape!");
791 * destroys the current PhysicsSpace so that a new one can be created
916 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Finalizing PhysicsSpace {0}", Long.toHexString(physicsSpaceId));