HomeSort by relevance Sort by last modified time
    Searched defs:m_normals (Results 1 - 3 of 3) sorted by null

  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Collision/Shapes/
b2PolygonShape.h 83 b2Vec2 m_normals[b2_maxPolygonVertices]; member in class:b2PolygonShape
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionShapes/
btBox2dShape.h 33 btVector3 m_normals[4]; variable
98 m_normals[0].setValue(0,-1,0);
99 m_normals[1].setValue(1,0,0);
100 m_normals[2].setValue(0,1,0);
101 m_normals[3].setValue(-1,0,0);
163 return &m_normals[0];
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/shapes/
PolygonShape.java 57 * The normals of the shape. Note: use getVertexCount(), not m_normals.length, to get number of
60 public final Vec2 m_normals[]; field in class:PolygonShape
82 m_normals = new Vec2[Settings.maxPolygonVertices];
83 for (int i = 0; i < m_normals.length; i++) {
84 m_normals[i] = new Vec2();
93 for (int i = 0; i < shape.m_normals.length; i++) {
94 shape.m_normals[i].set(m_normals[i]);
230 Vec2.crossToOutUnsafe(edge, 1f, m_normals[i]);
231 m_normals[i].normalize()
    [all...]

Completed in 820 milliseconds