Searched defs:btVector4 (Results 1 - 2 of 2) sorted by relevance

/external/libgdx/extensions/gdx-bullet/jni/swig-src/linearmath/com/badlogic/gdx/physics/bullet/linearmath/
H A DbtVector4.java17 public class btVector4 extends btVector3 { class in inherits:btVector3
20 protected btVector4(final String className, long cPtr, boolean cMemoryOwn) { method in class:btVector4
25 /** Construct a new btVector4, normally you should not need this constructor it's intended for low-level usage. */
26 public btVector4(long cPtr, boolean cMemoryOwn) { method in class:btVector4
27 this("btVector4", cPtr, cMemoryOwn);
38 public static long getCPtr(btVector4 obj) {
60 public btVector4() { method in class:btVector4
64 public btVector4(float _x, float _y, float _z, float _w) { method in class:btVector4
68 public btVector4 absolute4() {
69 return new btVector4(LinearMathJN
[all...]
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
H A DbtVector3.h1077 class btVector4 : public btVector3 class in inherits:btVector3
1081 SIMD_FORCE_INLINE btVector4() {} function in class:btVector4
1084 SIMD_FORCE_INLINE btVector4(const btScalar& _x, const btScalar& _y, const btScalar& _z,const btScalar& _w) function in class:btVector4
1091 SIMD_FORCE_INLINE btVector4(const btSimdFloat4 vec) function in class:btVector4
1096 SIMD_FORCE_INLINE btVector4(const btVector3& rhs) function in class:btVector4
1101 SIMD_FORCE_INLINE btVector4&
1102 operator=(const btVector4& v)
1109 SIMD_FORCE_INLINE btVector4 absolute4() const
1112 return btVector4(_mm_and_ps(mVec128, btvAbsfMask));
1114 return btVector4(vabsq_f3
[all...]

Completed in 87 milliseconds