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

/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionDispatch/
H A DbtCompoundCompoundCollisionAlgorithm.h39 /// btCompoundCompoundCollisionAlgorithm supports collision between two btCompoundCollisionShape shapes
40 class btCompoundCompoundCollisionAlgorithm : public btCompoundCollisionAlgorithm class in inherits:btCompoundCollisionAlgorithm
56 btCompoundCompoundCollisionAlgorithm( const btCollisionAlgorithmConstructionInfo& ci,const btCollisionObjectWrapper* body0Wrap,const btCollisionObjectWrapper* body1Wrap,bool isSwapped);
58 virtual ~btCompoundCompoundCollisionAlgorithm();
73 void* mem = ci.m_dispatcher1->allocateCollisionAlgorithm(sizeof(btCompoundCompoundCollisionAlgorithm));
74 return new(mem) btCompoundCompoundCollisionAlgorithm(ci,body0Wrap,body1Wrap,false);
82 void* mem = ci.m_dispatcher1->allocateCollisionAlgorithm(sizeof(btCompoundCompoundCollisionAlgorithm));
83 return new(mem) btCompoundCompoundCollisionAlgorithm(ci,body0Wrap,body1Wrap,true);
H A DbtCompoundCompoundCollisionAlgorithm.cpp17 #include "btCompoundCompoundCollisionAlgorithm.h"
29 btCompoundCompoundCollisionAlgorithm::btCompoundCompoundCollisionAlgorithm( const btCollisionAlgorithmConstructionInfo& ci,const btCollisionObjectWrapper* body0Wrap,const btCollisionObjectWrapper* body1Wrap,bool isSwapped) function in class:btCompoundCompoundCollisionAlgorithm
52 btCompoundCompoundCollisionAlgorithm::~btCompoundCompoundCollisionAlgorithm()
59 void btCompoundCompoundCollisionAlgorithm::getAllContactManifolds(btManifoldArray& manifoldArray)
74 void btCompoundCompoundCollisionAlgorithm::removeChildAlgorithms()
281 void btCompoundCompoundCollisionAlgorithm::processCollision (const btCollisionObjectWrapper* body0Wrap,const btCollisionObjectWrapper* body1Wrap,const btDispatcherInfo& dispatchInfo,btManifoldResult* resultOut)
418 btScalar btCompoundCompoundCollisionAlgorithm::calculateTimeOfImpact(btCollisionObject* body0,btCollisionObject* body1,const btDispatcherInfo& dispatchInfo,btManifoldResult* resultOut)
/external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
H A DbtCompoundCompoundCollisionAlgorithm.java18 public class btCompoundCompoundCollisionAlgorithm extends BulletBase { class in inherits:BulletBase
21 protected btCompoundCompoundCollisionAlgorithm(final String className, long cPtr, boolean cMemoryOwn) { method in class:btCompoundCompoundCollisionAlgorithm
26 /** Construct a new btCompoundCompoundCollisionAlgorithm, normally you should not need this constructor it's intended for low-level usage. */
27 public btCompoundCompoundCollisionAlgorithm(long cPtr, boolean cMemoryOwn) { method in class:btCompoundCompoundCollisionAlgorithm
28 this("btCompoundCompoundCollisionAlgorithm", cPtr, cMemoryOwn);
39 public static long getCPtr(btCompoundCompoundCollisionAlgorithm obj) {
61 public btCompoundCompoundCollisionAlgorithm(btCollisionAlgorithmConstructionInfo ci, btCollisionObjectWrapper body0Wrap, btCollisionObjectWrapper body1Wrap, boolean isSwapped) { method in class:btCompoundCompoundCollisionAlgorithm

Completed in 109 milliseconds