Searched refs:otherY (Results 1 - 3 of 3) sorted by relevance

/external/replicaisland/src/com/replica/replicaisland/
H A DVector2.java45 public final void add(float otherX, float otherY) { argument
47 y += otherY;
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DVector3f.java336 * @param otherY
344 public Vector3f cross(float otherX, float otherY, float otherZ, Vector3f result) { argument
346 float resX = ((y * otherZ) - (z * otherY));
348 float resZ = ((x * otherY) - (y * otherX));
371 * @param otherY
377 public Vector3f crossLocal(float otherX, float otherY, float otherZ) { argument
378 float tempx = ( y * otherZ ) - ( z * otherY );
380 z = (x * otherY) - (y * otherX);
H A DVector2f.java320 * @param otherY The Y coordinate of the v vector
323 public float distanceSquared(float otherX, float otherY) { argument
325 double dy = y - otherY;

Completed in 100 milliseconds