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

  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/BroadphaseCollision/
btDispatcher.cpp 16 #include "btDispatcher.h"
18 btDispatcher::~btDispatcher()
btDispatcher.h 67 ///The btDispatcher interface class can be used in combination with broadphase to dispatch calculations for overlapping pairs.
69 class btDispatcher
74 virtual ~btDispatcher() ;
88 virtual void dispatchAllCollisionPairs(btOverlappingPairCache* pairCache,const btDispatcherInfo& dispatchInfo,btDispatcher* dispatcher) =0;
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
btDispatcher.java 18 public class btDispatcher extends BulletBase {
21 protected btDispatcher(final String className, long cPtr, boolean cMemoryOwn) {
26 /** Construct a new btDispatcher, normally you should not need this constructor it's intended for low-level usage. */
27 public btDispatcher(long cPtr, boolean cMemoryOwn) {
28 this("btDispatcher", cPtr, cMemoryOwn);
39 public static long getCPtr(btDispatcher obj) {
92 public void dispatchAllCollisionPairs(btOverlappingPairCache pairCache, btDispatcherInfo dispatchInfo, btDispatcher dispatcher) {
93 CollisionJNI.btDispatcher_dispatchAllCollisionPairs(swigCPtr, this, btOverlappingPairCache.getCPtr(pairCache), pairCache, btDispatcherInfo.getCPtr(dispatchInfo), dispatchInfo, btDispatcher.getCPtr(dispatcher), dispatcher);

Completed in 64 milliseconds