Searched refs:halfExtent (Results 1 – 2 of 2) sorted by relevance
78 SIMD_FORCE_INLINE int btOutcode(const btVector3& p,const btVector3& halfExtent) in btOutcode() argument80 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()
300 public static int btOutcode(Vector3 p, Vector3 halfExtent) { in btOutcode() argument301 return LinearMathJNI.btOutcode(p, halfExtent); in btOutcode()