Searched refs:oldArea (Results 1 - 3 of 3) sorted by relevance

/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Collision/
H A Db2DynamicTree.cpp222 float32 oldArea = m_nodes[child1].aabb.GetPerimeter(); local
224 cost1 = (newArea - oldArea) + inheritanceCost;
239 float32 oldArea = m_nodes[child2].aabb.GetPerimeter(); local
241 cost2 = newArea - oldArea + inheritanceCost;
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/broadphase/
H A DDynamicTree.java541 float oldArea = child1.aabb.getPerimeter();
543 cost1 = (newArea - oldArea) + inheritanceCost;
553 float oldArea = child2.aabb.getPerimeter();
555 cost2 = newArea - oldArea + inheritanceCost;
H A DDynamicTreeFlatNodes.java526 float oldArea = child1AABB.getPerimeter();
528 cost1 = (newArea - oldArea) + inheritanceCost;
539 float oldArea = child2AABB.getPerimeter();
541 cost2 = newArea - oldArea + inheritanceCost;

Completed in 84 milliseconds