Beispiel #1
0
 /// <summary>
 /// get the max lenght of this vector
 /// </summary>
 /// <returns>min lenght of x, y or z</returns>
 public static float Maximum(this Vector3 vector)
 {
     return(ExtMathf.Max(vector.x, vector.y, vector.z));
 }