OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:broadphase
(Results
1 - 2
of
2
) sorted by null
/external/jmonkeyengine/engine/src/bullet-native/
jmePhysicsSpace.cpp
116
btBroadphaseInterface*
broadphase
;
local
120
broadphase
= new btSimpleBroadphase();
123
broadphase
= new btAxisSweep3(min, max);
127
broadphase
= new btAxisSweep3(min, max);
130
broadphase
= new btDbvtBroadphase();
133
//
broadphase
= new btGpu3DGridBroadphase(
160
btDiscreteDynamicsWorld* world = new btDiscreteDynamicsWorld(dispatcher,
broadphase
, solver, collisionConfiguration);
172
broadphase
->getOverlappingPairCache()->setInternalGhostPairCallback(new btGhostPairCallback());
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/
PhysicsSpace.java
38
import com.bulletphysics.collision.
broadphase
.*;
98
private BroadphaseInterface
broadphase
;
field in class:PhysicsSpace
167
broadphase
= new SimpleBroadphase();
170
broadphase
= new AxisSweep3(Converter.convert(worldMin), Converter.convert(worldMax));
173
broadphase
= new AxisSweep3_32(Converter.convert(worldMin), Converter.convert(worldMax));
176
broadphase
= new DbvtBroadphase();
182
dynamicsWorld = new DiscreteDynamicsWorld(dispatcher,
broadphase
, solver, collisionConfiguration);
185
broadphase
.getOverlappingPairCache().setInternalGhostPairCallback(new GhostPairCallback());
[
all
...]
Completed in 35 milliseconds