OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:VectorPool
(Results
1 - 8
of
8
) sorted by null
/external/replicaisland/src/com/replica/replicaisland/
VectorPool.java
22
public class
VectorPool
extends TObjectPool<Vector2> {
24
public
VectorPool
() {
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
...]
HitReactionComponent.java
178
VectorPool
pool = sSystemRegistry.
vectorPool
;
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
...]
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 334 milliseconds