Home
last modified time | relevance | path

Searched refs:otherPosition (Results 1 – 4 of 4) sorted by relevance

/external/replicaisland/src/com/replica/replicaisland/
DAABoxCollisionVolume.java74 Vector2 otherPosition, FlipInfo otherFlip) { in intersects() argument
80 final float otherLeft = other.getMinXPosition(otherFlip) + otherPosition.x; in intersects()
81 final float otherRight = other.getMaxXPosition(otherFlip) + otherPosition.x; in intersects()
82 final float otherBottom = other.getMinYPosition(otherFlip) + otherPosition.y; in intersects()
83 final float otherTop = other.getMaxYPosition(otherFlip) + otherPosition.y; in intersects()
DSphereCollisionVolume.java86 Vector2 otherPosition, FlipInfo otherFlip) { in intersects() argument
91 result = other.intersects(otherPosition, otherFlip, this, position, flip); in intersects()
99 mWorkspaceVector2.set(otherPosition); in intersects()
112 mWorkspaceVector2.set(otherPosition); in intersects()
DGameObjectCollisionSystem.java120 final Vector2 otherPosition = other.object.getPosition(); in update() local
126 if (otherPosition.x + other.boundingVolume.getMinXPosition(sOtherFlip) > maxX) { in update()
135 other.boundingVolume, otherPosition, sOtherFlip)) { in update()
142 otherPosition, in update()
161 otherPosition, in update()
DCollisionVolume.java56 Vector2 otherPosition, FlipInfo otherFlip); in intersects() argument