Searched defs:otherPosition (Results 1 - 3 of 3) sorted by relevance

/external/replicaisland/src/com/replica/replicaisland/
H A DCollisionVolume.java56 Vector2 otherPosition, FlipInfo otherFlip);
55 intersects(Vector2 position, FlipInfo flip, CollisionVolume other, Vector2 otherPosition, FlipInfo otherFlip) argument
H A DAABoxCollisionVolume.java69 * @param otherPosition The world position of the other volume.
74 Vector2 otherPosition, FlipInfo otherFlip) {
80 final float otherLeft = other.getMinXPosition(otherFlip) + otherPosition.x;
81 final float otherRight = other.getMaxXPosition(otherFlip) + otherPosition.x;
82 final float otherBottom = other.getMinYPosition(otherFlip) + otherPosition.y;
83 final float otherTop = other.getMaxYPosition(otherFlip) + otherPosition.y;
73 intersects(Vector2 position, FlipInfo flip, CollisionVolume other, Vector2 otherPosition, FlipInfo otherFlip) argument
H A DSphereCollisionVolume.java86 Vector2 otherPosition, FlipInfo otherFlip) {
91 result = other.intersects(otherPosition, otherFlip, this, position, flip);
99 mWorkspaceVector2.set(otherPosition);
112 mWorkspaceVector2.set(otherPosition);
85 intersects(Vector2 position, FlipInfo flip, CollisionVolume other, Vector2 otherPosition, FlipInfo otherFlip) argument

Completed in 122 milliseconds