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

  /external/replicaisland/src/com/replica/replicaisland/
PhysicsComponent.java 67 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)
    [all...]
CollisionSystem.java 122 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;
    [all...]
ObjectRegistry.java 58 public VectorPool vectorPool;
HitReactionComponent.java 178 VectorPool pool = sSystemRegistry.vectorPool;
Game.java 164 BaseObject.sSystemRegistry.vectorPool = new VectorPool();
HudSystem.java 259 final VectorPool pool = sSystemRegistry.vectorPool;
PlayerComponent.java 119 VectorPool pool = sSystemRegistry.vectorPool;

Completed in 708 milliseconds