Home
last modified time | relevance | path

Searched refs:halfExtent (Results 1 – 2 of 2) sorted by relevance

/external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
DbtAabbUtil2.h78 SIMD_FORCE_INLINE int btOutcode(const btVector3& p,const btVector3& halfExtent) in btOutcode() argument
80 return (p.getX() < -halfExtent.getX() ? 0x01 : 0x0) | in btOutcode()
81 (p.getX() > halfExtent.getX() ? 0x08 : 0x0) | in btOutcode()
82 (p.getY() < -halfExtent.getY() ? 0x02 : 0x0) | in btOutcode()
83 (p.getY() > halfExtent.getY() ? 0x10 : 0x0) | in btOutcode()
84 (p.getZ() < -halfExtent.getZ() ? 0x4 : 0x0) | in btOutcode()
85 (p.getZ() > halfExtent.getZ() ? 0x20 : 0x0); in btOutcode()
/external/libgdx/extensions/gdx-bullet/jni/swig-src/linearmath/com/badlogic/gdx/physics/bullet/linearmath/
DLinearMath.java300 public static int btOutcode(Vector3 p, Vector3 halfExtent) { in btOutcode() argument
301 return LinearMathJNI.btOutcode(p, halfExtent); in btOutcode()