Searched refs:subtractZ (Results 1 – 2 of 2) sorted by relevance
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
D | Vector3f.java | 720 public Vector3f subtract(float subtractX, float subtractY, float subtractZ) { in subtract() argument 721 return new Vector3f(x - subtractX, y - subtractY, z - subtractZ); in subtract() 737 public Vector3f subtractLocal(float subtractX, float subtractY, float subtractZ) { in subtractLocal() argument 740 z -= subtractZ; in subtractLocal()
|
D | Vector4f.java | 663 public Vector4f subtract(float subtractX, float subtractY, float subtractZ, float subtractW) { in subtract() argument 664 return new Vector4f(x - subtractX, y - subtractY, z - subtractZ, w - subtractW); in subtract() 682 …public Vector4f subtractLocal(float subtractX, float subtractY, float subtractZ, float subtractW) { in subtractLocal() argument 685 z -= subtractZ; in subtractLocal()
|