Home
last modified time | relevance | path

Searched refs:otherX (Results 1 – 3 of 3) sorted by relevance

/external/replicaisland/src/com/replica/replicaisland/
DVector2.java45 public final void add(float otherX, float otherY) { in add() argument
46 x += otherX; in add()
/external/jmonkeyengine/engine/src/core/com/jme3/math/
DVector3f.java344 public Vector3f cross(float otherX, float otherY, float otherZ, Vector3f result) { in cross() argument
347 float resY = ((z * otherX) - (x * otherZ)); in cross()
348 float resZ = ((x * otherY) - (y * otherX)); in cross()
377 public Vector3f crossLocal(float otherX, float otherY, float otherZ) { in crossLocal() argument
379 float tempy = ( z * otherX ) - ( x * otherZ ); in crossLocal()
380 z = (x * otherY) - (y * otherX); in crossLocal()
DVector2f.java323 public float distanceSquared(float otherX, float otherY) { in distanceSquared() argument
324 double dx = x - otherX; in distanceSquared()