Home
last modified time | relevance | path

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

/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Common/
Db2Math.h57 struct b2Vec2 struct
60 b2Vec2() {} in b2Vec2() argument
63 b2Vec2(float32 x, float32 y) : x(x), y(y) {} in b2Vec2() function
72 b2Vec2 operator -() const { b2Vec2 v; v.Set(-x, -y); return v; } argument
87 void operator += (const b2Vec2& v) argument
111 /// b2Vec2::Length (if possible). argument
112 float32 LengthSquared() const in LengthSquared()
139 b2Vec2 Skew() const in Skew() argument
144 float32 x, y;