Ejemplo n.º 1
0
 /**
  * Gets the Vector3 composed of the largest components of the two vectors.
  *
  * @param other The other Vector3 to compare this Vector3 with.
  * @return
  */
 public Vector3 max(Vector3 other) {
   return MathHelper.max(this, other);
 }