Beispiel #1
0
 /// <summary>
 /// get the min lenght of this vector
 /// </summary>
 /// <param name="vector"></param>
 /// <returns>min lenght of x, y or z</returns>
 public static float Minimum(this Vector3 vector)
 {
     return(ExtMathf.Min(vector.x, vector.y, vector.z));
 }