Searched refs:m_normal2 (Results 1 - 2 of 2) sorted by relevance

/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Collision/
H A Db2CollideEdge.cpp213 b2Vec2 m_normal0, m_normal1, m_normal2; member in struct:b2EPCollider
267 m_normal2.Set(edge2.y, -edge2.x);
269 offset2 = b2Dot(m_normal2, m_centroidB - m_v2);
282 m_upperLimit = m_normal2;
303 m_lowerLimit = -m_normal2;
314 m_upperLimit = m_normal2;
335 m_lowerLimit = -m_normal2;
384 m_upperLimit = m_normal2;
405 m_lowerLimit = -m_normal2;
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/
H A DCollision.java975 final Vec2 m_normal2 = new Vec2(); field in class:Collision.EPCollider
1038 m_normal2.set(edge2.y, -edge2.x);
1040 offset2 = Vec2.dot(m_normal2, temp.set(m_centroidB).subLocal(m_v2));
1052 m_upperLimit.x = m_normal2.x;
1053 m_upperLimit.y = m_normal2.y;
1074 m_lowerLimit.x = -m_normal2.x;
1075 m_lowerLimit.y = -m_normal2.y;
1086 m_upperLimit.x = m_normal2.x;
1087 m_upperLimit.y = m_normal2.y;
1108 m_lowerLimit.x = -m_normal2
[all...]

Completed in 85 milliseconds