Home
last modified time | relevance | path

Searched defs:b2Vec3 (Results 1 – 1 of 1) sorted by relevance

/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Common/
Db2Math.h148 struct b2Vec3 struct
151 b2Vec3() {} in b2Vec3() argument
154 b2Vec3(float32 x, float32 y, float32 z) : x(x), y(y), z(z) {} in b2Vec3() function
163 b2Vec3 operator -() const { b2Vec3 v; v.Set(-x, -y, -z); return v; } argument
183 float32 x, y, z;