/external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/ |
ContactListener.java | 116 public boolean onContactAdded(btManifoldPoint cp, int userValue0, int partId0, int index0, int userValue1, int partId1, int index1) { 117 return CollisionJNI.ContactListener_onContactAdded__SWIG_2(swigCPtr, this, btManifoldPoint.getCPtr(cp), cp, userValue0, partId0, index0, userValue1, partId1, index1); 128 public boolean onContactAdded(btManifoldPoint cp, int userValue0, int partId0, int index0, boolean match0, int userValue1, int partId1, int index1, boolean match1) { 129 return CollisionJNI.ContactListener_onContactAdded__SWIG_5(swigCPtr, this, btManifoldPoint.getCPtr(cp), cp, userValue0, partId0, index0, match0, userValue1, partId1, index1, match1); 140 public boolean onContactAdded(int userValue0, int partId0, int index0, int userValue1, int partId1, int index1) { 141 return CollisionJNI.ContactListener_onContactAdded__SWIG_8(swigCPtr, this, userValue0, partId0, index0, userValue1, partId1, index1); 152 public boolean onContactAdded(int userValue0, int partId0, int index0, boolean match0, int userValue1, int partId1, int index1, boolean match1) { 153 return CollisionJNI.ContactListener_onContactAdded__SWIG_11(swigCPtr, this, userValue0, partId0, index0, match0, userValue1, partId1, index1, match1); 172 public void onContactProcessed(btManifoldPoint cp, int userValue0, int userValue1) { 173 CollisionJNI.ContactListener_onContactProcessed__SWIG_1(swigCPtr, this, btManifoldPoint.getCPtr(cp), cp, userValue0, userValue1); [all...] |
CollisionJNI.java | [all...] |
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/ |
ContactCallbackTest2.java | 29 public void onContactStarted (int userValue0, boolean match0, int userValue1, boolean match1) {
36 final BulletEntity e = (BulletEntity)(entities.get(userValue1));
38 Gdx.app.log("ContactCallbackTest", "Contact started " + userValue1);
43 public void onContactEnded (int userValue0, boolean match0, int userValue1, boolean match1) {
50 final BulletEntity e = (BulletEntity)(entities.get(userValue1));
52 Gdx.app.log("ContactCallbackTest", "Contact ended " + userValue1);
|
ContactCacheTest.java | 43 public void onContactStarted (int userValue0, boolean match0, int userValue1, boolean match1) {
50 final BulletEntity e = (BulletEntity)(entities.get(userValue1));
52 Gdx.app.log(Float.toString(time), "Contact started " + userValue1);
57 public void onContactEnded (int userValue0, boolean match0, int userValue1, boolean match1) {
64 final BulletEntity e = (BulletEntity)(entities.get(userValue1));
66 Gdx.app.log(Float.toString(time), "Contact ended " + userValue1);
77 final int userValue1 = manifold.getBody1().getUserValue();
84 final BulletEntity e = (BulletEntity)(entities.get(userValue1));
86 Gdx.app.log(Float.toString(time), "Contact started " + userValue1);
93 final int userValue1 = colObj1.getUserValue(); [all...] |
ContactCallbackTest.java | 34 public void onContactProcessed (int userValue0, boolean match0, int userValue1, boolean match1) { 43 final BulletEntity e = (BulletEntity)(entities.get(userValue1));
|
/external/libgdx/extensions/gdx-bullet/jni/src/custom/gdx/collision/ |
ContactListener.h | 110 int userValue1,int partId1,int index1) = 0; 117 int userValue1,int partId1,int index1,bool match1) = 0; 124 int userValue1,int partId1,int index1) = 0; 131 int userValue1,int partId1,int index1,bool match1) = 0; 138 virtual void onContactProcessed(btManifoldPoint& cp, int userValue0, int userValue1) = 0; 141 virtual void onContactProcessed(btManifoldPoint& cp, int userValue0, bool match0, int userValue1, bool match1) = 0; 144 virtual void onContactProcessed(int userValue0, int userValue1) = 0; 147 virtual void onContactProcessed(int userValue0, bool match0, int userValue1, bool match1) = 0; 161 virtual void onContactStarted(const int &userValue0, const int &userValue1) = 0; 165 virtual void onContactStarted(const int &userValue0, const bool &match0, const int &userValue1, const bool &match1) = 0 [all...] |
/external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/ |
collision_wrap.h | 347 virtual bool onContactAdded(btManifoldPoint &cp, int userValue0, int partId0, int index0, int userValue1, int partId1, int index1); 350 virtual bool onContactAdded(btManifoldPoint &cp, int userValue0, int partId0, int index0, bool match0, int userValue1, int partId1, int index1, bool match1); 353 virtual bool onContactAdded(int userValue0, int partId0, int index0, int userValue1, int partId1, int index1); 356 virtual bool onContactAdded(int userValue0, int partId0, int index0, bool match0, int userValue1, int partId1, int index1, bool match1); 358 virtual void onContactProcessed(btManifoldPoint &cp, int userValue0, int userValue1); 360 virtual void onContactProcessed(btManifoldPoint &cp, int userValue0, bool match0, int userValue1, bool match1); 362 virtual void onContactProcessed(int userValue0, int userValue1); 364 virtual void onContactProcessed(int userValue0, bool match0, int userValue1, bool match1); 368 virtual void onContactStarted(int const &userValue0, int const &userValue1); 371 virtual void onContactStarted(int const &userValue0, bool const &match0, int const &userValue1, bool const &match1) [all...] |
collision_wrap.cpp | [all...] |