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

  /external/replicaisland/src/com/replica/replicaisland/
ObjectRegistry.java 58 public VectorPool vectorPool;
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...]

Completed in 71 milliseconds