Searched defs:broadphaseType (Results 1 - 3 of 3) sorted by relevance

/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/
H A DBulletAppState.java29 protected BroadphaseType broadphaseType = BroadphaseType.DBVT; field in class:BulletAppState
47 * @param broadphaseType The type of broadphase collision detection, BroadphaseType.DVBT is the default
49 public BulletAppState(BroadphaseType broadphaseType) { argument
50 this(new Vector3f(-10000f, -10000f, -10000f), new Vector3f(10000f, 10000f, 10000f), broadphaseType);
64 public BulletAppState(Vector3f worldMin, Vector3f worldMax, BroadphaseType broadphaseType) { argument
67 this.broadphaseType = broadphaseType;
80 pSpace = new PhysicsSpace(worldMin, worldMax, broadphaseType);
131 pSpace = new PhysicsSpace(worldMin, worldMax, broadphaseType);
230 public void setBroadphaseType(BroadphaseType broadphaseType) { argument
[all...]
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/
H A DPhysicsSpace.java99 private BroadphaseType broadphaseType = BroadphaseType.DBVT; field in class:PhysicsSpace
142 public PhysicsSpace(BroadphaseType broadphaseType) { argument
143 this(new Vector3f(-10000f, -10000f, -10000f), new Vector3f(10000f, 10000f, 10000f), broadphaseType);
150 public PhysicsSpace(Vector3f worldMin, Vector3f worldMax, BroadphaseType broadphaseType) { argument
153 this.broadphaseType = broadphaseType;
165 switch (broadphaseType) {
753 return broadphaseType;
756 public void setBroadphaseType(BroadphaseType broadphaseType) { argument
757 this.broadphaseType
[all...]
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/
H A DPhysicsSpace.java80 private BroadphaseType broadphaseType = BroadphaseType.DBVT; field in class:PhysicsSpace
126 public PhysicsSpace(BroadphaseType broadphaseType) { argument
127 this(new Vector3f(-10000f, -10000f, -10000f), new Vector3f(10000f, 10000f, 10000f), broadphaseType);
134 public PhysicsSpace(Vector3f worldMin, Vector3f worldMax, BroadphaseType broadphaseType) { argument
137 this.broadphaseType = broadphaseType;
152 // switch (broadphaseType) {
182 private native long createPhysicsSpace(float minX, float minY, float minZ, float maxX, float maxY, float maxZ, int broadphaseType, boolean threading); argument
810 return broadphaseType;
813 public void setBroadphaseType(BroadphaseType broadphaseType) { argument
[all...]

Completed in 121 milliseconds