HomeSort by relevance Sort by last modified time
    Searched refs:proxyId (Results 1 - 20 of 20) sorted by null

  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Collision/
b2BroadPhase.cpp 44 int32 proxyId = m_tree.CreateProxy(aabb, userData);
46 BufferMove(proxyId);
47 return proxyId;
50 void b2BroadPhase::DestroyProxy(int32 proxyId)
52 UnBufferMove(proxyId);
54 m_tree.DestroyProxy(proxyId);
57 void b2BroadPhase::MoveProxy(int32 proxyId, const b2AABB& aabb, const b2Vec2& displacement)
59 bool buffer = m_tree.MoveProxy(proxyId, aabb, displacement);
62 BufferMove(proxyId);
66 void b2BroadPhase::TouchProxy(int32 proxyId)
    [all...]
b2BroadPhase.h 54 void DestroyProxy(int32 proxyId);
58 void MoveProxy(int32 proxyId, const b2AABB& aabb, const b2Vec2& displacement);
61 void TouchProxy(int32 proxyId);
64 const b2AABB& GetFatAABB(int32 proxyId) const;
67 void* GetUserData(int32 proxyId) const;
112 void BufferMove(int32 proxyId);
113 void UnBufferMove(int32 proxyId);
115 bool QueryCallback(int32 proxyId);
178 inline void* b2BroadPhase::GetUserData(int32 proxyId) const
180 return m_tree.GetUserData(proxyId);
    [all...]
b2DynamicTree.h 74 void DestroyProxy(int32 proxyId);
80 bool MoveProxy(int32 proxyId, const b2AABB& aabb1, const b2Vec2& displacement);
84 void* GetUserData(int32 proxyId) const;
87 const b2AABB& GetFatAABB(int32 proxyId) const;
156 inline void* b2DynamicTree::GetUserData(int32 proxyId) const
158 b2Assert(0 <= proxyId && proxyId < m_nodeCapacity);
159 return m_nodes[proxyId].userData;
162 inline const b2AABB& b2DynamicTree::GetFatAABB(int32 proxyId) const
164 b2Assert(0 <= proxyId && proxyId < m_nodeCapacity)
    [all...]
b2DynamicTree.cpp 110 int32 proxyId = AllocateNode();
114 m_nodes[proxyId].aabb.lowerBound = aabb.lowerBound - r;
115 m_nodes[proxyId].aabb.upperBound = aabb.upperBound + r;
116 m_nodes[proxyId].userData = userData;
117 m_nodes[proxyId].height = 0;
119 InsertLeaf(proxyId);
121 return proxyId;
124 void b2DynamicTree::DestroyProxy(int32 proxyId)
126 b2Assert(0 <= proxyId && proxyId < m_nodeCapacity)
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/callbacks/
TreeCallback.java 38 * @param proxyId the id of the proxy
41 public boolean treeCallback(int proxyId);
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/broadphase/
BroadPhase.java 28 * @param proxyId
30 void destroyProxy(int proxyId);
36 void moveProxy(int proxyId, AABB aabb, Vec2 displacement);
38 void touchProxy(int proxyId);
40 Object getUserData(int proxyId);
42 AABB getFatAABB(int proxyId);
BroadPhaseStrategy.java 24 * @param proxyId
26 void destroyProxy(int proxyId);
34 boolean moveProxy(int proxyId, AABB aabb, Vec2 displacement);
36 Object getUserData(int proxyId);
38 AABB getFatAABB(int proxyId);
DefaultBroadPhaseBuffer.java 79 int proxyId = m_tree.createProxy(aabb, userData);
81 bufferMove(proxyId);
82 return proxyId;
86 public final void destroyProxy(int proxyId) {
87 unbufferMove(proxyId);
89 m_tree.destroyProxy(proxyId);
93 public final void moveProxy(int proxyId, final AABB aabb, final Vec2 displacement) {
94 boolean buffer = m_tree.moveProxy(proxyId, aabb, displacement);
96 bufferMove(proxyId);
101 public void touchProxy(int proxyId) {
    [all...]
DynamicTree.java 82 int proxyId = node.id;
91 insertLeaf(proxyId);
93 return proxyId;
97 public final void destroyProxy(int proxyId) {
98 assert (0 <= proxyId && proxyId < m_nodeCapacity);
99 DynamicTreeNode node = m_nodes[proxyId];
107 public final boolean moveProxy(int proxyId, final AABB aabb, Vec2 displacement) {
109 assert (0 <= proxyId && proxyId < m_nodeCapacity)
    [all...]
DynamicTreeFlatNodes.java 104 public final void destroyProxy(int proxyId) {
105 assert (0 <= proxyId && proxyId < m_nodeCapacity);
106 assert (m_child1[proxyId] == NULL_NODE);
108 removeLeaf(proxyId);
109 freeNode(proxyId);
113 public final boolean moveProxy(int proxyId, final AABB aabb, Vec2 displacement) {
114 assert (0 <= proxyId && proxyId < m_nodeCapacity);
115 final int node = proxyId;
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/
FixtureProxy.java 37 int proxyId;
Fixture.java 172 broadPhase.touchProxy(m_proxies[i].proxyId);
339 m_proxies[i].proxyId = BroadPhase.NULL_PROXY;
353 m_proxies[i].proxyId = BroadPhase.NULL_PROXY;
384 proxy.proxyId = broadPhase.createProxy(proxy.aabb, proxy);
399 broadPhase.destroyProxy(proxy.proxyId);
400 proxy.proxyId = BroadPhase.NULL_PROXY;
443 broadPhase.moveProxy(proxy.proxyId, proxy.aabb, displacement);
ContactManager.java 275 int proxyIdA = fixtureA.m_proxies[indexA].proxyId;
276 int proxyIdB = fixtureB.m_proxies[indexB].proxyId;
Body.java 914 broadPhase.touchProxy(f.m_proxies[i].proxyId);
    [all...]
World.java 745 AABB aabb = m_contactManager.m_broadPhase.getFatAABB(proxy.proxyId);
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Dynamics/
b2Fixture.cpp 62 m_proxies[i].proxyId = b2BroadPhase::e_nullProxy;
133 proxy->proxyId = broadPhase->CreateProxy(proxy->aabb, proxy);
145 broadPhase->DestroyProxy(proxy->proxyId);
146 proxy->proxyId = b2BroadPhase::e_nullProxy;
172 broadPhase->MoveProxy(proxy->proxyId, proxy->aabb, displacement);
216 broadPhase->TouchProxy(m_proxies[i].proxyId);
b2ContactManager.cpp 153 int32 proxyIdA = fixtureA->m_proxies[indexA].proxyId;
154 int32 proxyIdB = fixtureB->m_proxies[indexB].proxyId;
b2Fixture.h 99 int32 proxyId;
b2World.cpp 976 bool QueryCallback(int32 proxyId)
978 b2FixtureProxy* proxy = (b2FixtureProxy*)broadPhase->GetUserData(proxyId);
996 float32 RayCastCallback(const b2RayCastInput& input, int32 proxyId)
998 void* userData = broadPhase->GetUserData(proxyId);
1215 b2AABB aabb = bp->GetFatAABB(proxy->proxyId);
b2Body.cpp 161 broadPhase->TouchProxy(f->m_proxies[i].proxyId);

Completed in 1137 milliseconds