Home
last modified time | relevance | path

Searched refs:btAcos (Results 1 – 7 of 7) sorted by relevance

/external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
DbtQuaternion.h406 return btAcos(dot(q) / s); in angle()
416 return btAcos(dot(-q) / s) * btScalar(2.0); in angleShortestPath()
418 return btAcos(dot(q) / s) * btScalar(2.0); in angleShortestPath()
424 btScalar s = btScalar(2.) * btAcos(m_floats[3]); in getAngle()
433 s = btScalar(2.) * btAcos(m_floats[3]); in getAngleShortestPath()
435 s = btScalar(2.) * btAcos(-m_floats[3]); in getAngleShortestPath()
545 const btScalar theta = btAcos(sign * product); in slerp()
DbtScalar.h408 SIMD_FORCE_INLINE btScalar btAcos(btScalar x) { if (x<btScalar(-1)) x=btScalar(-1); if (x>btScalar(… in btAcos() function
454 SIMD_FORCE_INLINE btScalar btAcos(btScalar x) { in btAcos() function
DbtVector3.h356 return btAcos(dot(v) / s); in ATTRIBUTE_ALIGNED16()
/external/libgdx/extensions/gdx-bullet/jni/swig-src/linearmath/com/badlogic/gdx/physics/bullet/linearmath/
DLinearMath.java86 public static float btAcos(float x) { in btAcos() method in LinearMath
87 return LinearMathJNI.btAcos(x); in btAcos()
DLinearMathJNI.java25 public final static native float btAcos(float jarg1); in btAcos() method in LinearMathJNI
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletSoftBody/
DbtSoftBody.cpp2822 m_drift *= btMin(maxdrift,btAcos(Clamp<btScalar>(btDot(m_axis[0],m_axis[1]),-1,+1))); in Prepare()
/external/libgdx/extensions/gdx-bullet/jni/swig-src/linearmath/
Dlinearmath_wrap.cpp3181 result = (btScalar)btAcos(arg1); in Java_com_badlogic_gdx_physics_bullet_linearmath_LinearMathJNI_btAcos()