OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:broadphasetype
(Results
1 - 3
of
3
) sorted by null
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/
BulletAppState.java
10
import com.jme3.bullet.PhysicsSpace.
BroadphaseType
;
29
protected
BroadphaseType
broadphaseType
=
BroadphaseType
.DBVT;
47
* @param
broadphaseType
The type of broadphase collision detection,
BroadphaseType
.DVBT is the default
49
public BulletAppState(
BroadphaseType
broadphaseType
) {
50
this(new Vector3f(-10000f, -10000f, -10000f), new Vector3f(10000f, 10000f, 10000f),
broadphaseType
);
61
this(worldMin, worldMax,
BroadphaseType
.AXIS_SWEEP_3)
[
all
...]
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/
PhysicsSpace.java
80
private
BroadphaseType
broadphaseType
=
BroadphaseType
.DBVT;
123
this(new Vector3f(-10000f, -10000f, -10000f), new Vector3f(10000f, 10000f, 10000f),
BroadphaseType
.DBVT);
126
public PhysicsSpace(
BroadphaseType
broadphaseType
) {
127
this(new Vector3f(-10000f, -10000f, -10000f), new Vector3f(10000f, 10000f, 10000f),
broadphaseType
);
131
this(worldMin, worldMax,
BroadphaseType
.AXIS_SWEEP_3);
134
public PhysicsSpace(Vector3f worldMin, Vector3f worldMax,
BroadphaseType
broadphaseType
) {
[
all
...]
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/
PhysicsSpace.java
99
private
BroadphaseType
broadphaseType
=
BroadphaseType
.DBVT;
139
this(new Vector3f(-10000f, -10000f, -10000f), new Vector3f(10000f, 10000f, 10000f),
BroadphaseType
.DBVT);
142
public PhysicsSpace(
BroadphaseType
broadphaseType
) {
143
this(new Vector3f(-10000f, -10000f, -10000f), new Vector3f(10000f, 10000f, 10000f),
broadphaseType
);
147
this(worldMin, worldMax,
BroadphaseType
.AXIS_SWEEP_3);
150
public PhysicsSpace(Vector3f worldMin, Vector3f worldMax,
BroadphaseType
broadphaseType
) {
[
all
...]
Completed in 78 milliseconds