HomeSort by relevance Sort by last modified time
    Searched full:aabb1 (Results 1 - 5 of 5) sorted by null

  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/
AABB.java 140 * @param aabb1
143 public final void combine(final AABB aabb1, final AABB aab) {
144 lowerBound.x = aabb1.lowerBound.x < aab.lowerBound.x ? aabb1.lowerBound.x : aab.lowerBound.x;
145 lowerBound.y = aabb1.lowerBound.y < aab.lowerBound.y ? aabb1.lowerBound.y : aab.lowerBound.y;
146 upperBound.x = aabb1.upperBound.x > aab.upperBound.x ? aabb1.upperBound.x : aab.upperBound.x;
147 upperBound.y = aabb1.upperBound.y > aab.upperBound.y ? aabb1.upperBound.y : aab.upperBound.y
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/
Fixture.java 427 final AABB aabb1 = pool1; local
429 m_shape.computeAABB(aabb1, transform1, proxy.childIndex);
433 aabb1.lowerBound.x < aab.lowerBound.x ? aabb1.lowerBound.x : aab.lowerBound.x;
435 aabb1.lowerBound.y < aab.lowerBound.y ? aabb1.lowerBound.y : aab.lowerBound.y;
437 aabb1.upperBound.x > aab.upperBound.x ? aabb1.upperBound.x : aab.upperBound.x;
439 aabb1.upperBound.y > aab.upperBound.y ? aabb1.upperBound.y : aab.upperBound.y
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Collision/
b2Collision.h 195 void Combine(const b2AABB& aabb1, const b2AABB& aabb2)
197 lowerBound = b2Min(aabb1.lowerBound, aabb2.lowerBound);
198 upperBound = b2Max(aabb1.upperBound, aabb2.upperBound);
b2DynamicTree.h 80 bool MoveProxy(int32 proxyId, const b2AABB& aabb1, const b2Vec2& displacement);
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Dynamics/
b2Fixture.cpp 164 b2AABB aabb1, aabb2; local
165 m_shape->ComputeAABB(&aabb1, transform1, proxy->childIndex);
168 proxy->aabb.Combine(aabb1, aabb2);

Completed in 141 milliseconds