Searched refs:vectorPool (Results 1 - 7 of 7) sorted by relevance

/external/replicaisland/src/com/replica/replicaisland/
H A DPhysicsComponent.java67 VectorPool vectorPool = sSystemRegistry.vectorPool;
75 Vector2 newVelocity = vectorPool.allocate(currentVelocity);
126 vectorPool.release(newVelocity);
131 VectorPool vectorPool = sSystemRegistry.vectorPool;
135 Vector2 collisionNormal = vectorPool.allocate(opposingNormal);
139 Vector2 relativeVelocity = vectorPool.allocate(velocity);
154 Vector2 entity1Adjust = vectorPool.allocate(collisionNormal);
161 vectorPool
[all...]
H A DCollisionSystem.java122 VectorPool vectorPool = sSystemRegistry.vectorPool;
123 Vector2 tempHitPoint = vectorPool.allocate();
124 Vector2 tempHitNormal = vectorPool.allocate();
144 vectorPool.release(tempHitPoint);
145 vectorPool.release(tempHitNormal);
183 VectorPool vectorPool = sSystemRegistry.vectorPool;
184 Vector2 worldTileOffset = vectorPool.allocate();
218 vectorPool
[all...]
H A DObjectRegistry.java58 public VectorPool vectorPool; field in class:ObjectRegistry
H A DHitReactionComponent.java178 VectorPool pool = sSystemRegistry.vectorPool;
H A DGame.java164 BaseObject.sSystemRegistry.vectorPool = new VectorPool();
H A DHudSystem.java259 final VectorPool pool = sSystemRegistry.vectorPool;
H A DPlayerComponent.java119 VectorPool pool = sSystemRegistry.vectorPool;

Completed in 152 milliseconds