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

  /external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
btDbvtNode.java 18 public class btDbvtNode extends BulletBase {
21 protected btDbvtNode(final String className, long cPtr, boolean cMemoryOwn) {
26 /** Construct a new btDbvtNode, normally you should not need this constructor it's intended for low-level usage. */
27 public btDbvtNode(long cPtr, boolean cMemoryOwn) {
28 this("btDbvtNode", cPtr, cMemoryOwn);
39 public static long getCPtr(btDbvtNode obj) {
61 private final static btDbvtNode temp = new btDbvtNode(0, false);
62 /** Obtains a temporary instance, used by native methods that return a btDbvtNode instance */
63 public static btDbvtNode internalTemp(long cPtr, boolean own)
    [all...]
btDbvt.java 104 public void setA(btDbvtNode value) {
105 CollisionJNI.btDbvt_sStkNN_a_set(swigCPtr, this, btDbvtNode.getCPtr(value), value);
108 public btDbvtNode getA() {
109 return btDbvtNode.internalTemp(CollisionJNI.btDbvt_sStkNN_a_get(swigCPtr, this), false);
112 public void setB(btDbvtNode value) {
113 CollisionJNI.btDbvt_sStkNN_b_set(swigCPtr, this, btDbvtNode.getCPtr(value), value);
116 public btDbvtNode getB() {
117 return btDbvtNode.internalTemp(CollisionJNI.btDbvt_sStkNN_b_get(swigCPtr, this), false);
124 public sStkNN(btDbvtNode na, btDbvtNode nb)
    [all...]
CollisionJNI.java     [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/BroadphaseCollision/
btDbvt.h 176 /* btDbvtNode */
177 struct btDbvtNode
180 btDbvtNode* parent;
185 btDbvtNode* childs[2];
199 const btDbvtNode* a;
200 const btDbvtNode* b;
202 sStkNN(const btDbvtNode* na,const btDbvtNode* nb) : a(na),b(nb) {}
206 const btDbvtNode* node;
208 sStkNP(const btDbvtNode* n,unsigned m) : node(n),mask(m) {
    [all...]

Completed in 1391 milliseconds