OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:vectorPool
(Results
1 - 5
of
5
) sorted by null
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/utils/shapebuilders/
BaseShapeBuilder.java
64
private final static FlushablePool<Vector3>
vectorPool
= new FlushablePool<Vector3>() {
80
return
vectorPool
.obtain();
91
vectorPool
.flush();
/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
...]
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/
SkeletonTest.java
54
private final static Pool<Vector3>
vectorPool
= new Pool<Vector3>() {
85
final Vector3 pos =
vectorPool
.obtain();
93
vectorPool
.free(pos);
Completed in 193 milliseconds