HomeSort by relevance Sort by last modified time
    Searched refs:sStkNN (Results 1 - 4 of 4) sorted by null

  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/BroadphaseCollision/
btDbvt.h 197 struct sStkNN
201 sStkNN() {}
202 sStkNN(const btDbvtNode* na,const btDbvtNode* nb) : a(na),b(nb) {}
265 btAlignedObjectArray<sStkNN> m_stkStack;
733 btAlignedObjectArray<sStkNN> stkStack;
735 stkStack[0]=sStkNN(root0,root1);
737 sStkNN p=stkStack[--depth];
747 stkStack[depth++]=sStkNN(p.a->childs[0],p.a->childs[0]);
748 stkStack[depth++]=sStkNN(p.a->childs[1],p.a->childs[1]);
749 stkStack[depth++]=sStkNN(p.a->childs[0],p.a->childs[1])
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionDispatch/
btCompoundCompoundCollisionAlgorithm.cpp 237 btAlignedObjectArray<btDbvt::sStkNN> stkStack;
239 stkStack[0]=btDbvt::sStkNN(root0,root1);
241 btDbvt::sStkNN p=stkStack[--depth];
253 stkStack[depth++]=btDbvt::sStkNN(p.a->childs[0],p.b->childs[0]);
254 stkStack[depth++]=btDbvt::sStkNN(p.a->childs[1],p.b->childs[0]);
255 stkStack[depth++]=btDbvt::sStkNN(p.a->childs[0],p.b->childs[1]);
256 stkStack[depth++]=btDbvt::sStkNN(p.a->childs[1],p.b->childs[1]);
260 stkStack[depth++]=btDbvt::sStkNN(p.a->childs[0],p.b);
261 stkStack[depth++]=btDbvt::sStkNN(p.a->childs[1],p.b);
268 stkStack[depth++]=btDbvt::sStkNN(p.a,p.b->childs[0])
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
btDbvt.java 61 static public class sStkNN extends BulletBase {
64 protected sStkNN(final String className, long cPtr, boolean cMemoryOwn) {
69 /** Construct a new sStkNN, normally you should not need this constructor it's intended for low-level usage. */
70 public sStkNN(long cPtr, boolean cMemoryOwn) {
71 this("sStkNN", cPtr, cMemoryOwn);
82 public static long getCPtr(sStkNN obj) {
120 public sStkNN() {
124 public sStkNN(btDbvtNode na, btDbvtNode nb) {
CollisionJNI.java     [all...]

Completed in 49 milliseconds