HomeSort by relevance Sort by last modified time
    Searched defs:PhysicsSpace (Results 1 - 4 of 4) sorted by null

  /external/jmonkeyengine/engine/src/bullet-native/
jmeClasses.cpp 39 jclass jmeClasses::PhysicsSpace;
110 if(PhysicsSpace!=NULL) return;
116 PhysicsSpace = (jclass)env->NewGlobalRef(env->FindClass("com/jme3/bullet/PhysicsSpace"));
122 PhysicsSpace_preTick = env->GetMethodID(PhysicsSpace, "preTick_native", "(F)V");
123 PhysicsSpace_postTick = env->GetMethodID(PhysicsSpace, "postTick_native", "(F)V");
124 PhysicsSpace_addCollisionEvent = env->GetMethodID(PhysicsSpace, "addCollisionEvent_native","(Lcom/jme3/bullet/collision/PhysicsCollisionObject;Lcom/jme3/bullet/collision/PhysicsCollisionObject;J)V");
jmeClasses.h 43 static jclass PhysicsSpace;
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/
PhysicsSpace.java 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() {
    [all...]
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/
PhysicsSpace.java 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() {
    [all...]

Completed in 127 milliseconds