Ejemplo n.º 1
0
 /**
  * Divides the given Vector3 from this Vector3
  *
  * @param that The Vector3 to divide
  * @return the new Vector3
  */
 public Vector3 divide(Vector3 that) {
   return MathHelper.divide(this, that);
 }