Ejemplo n.º 1
0
        public static Vector3 Min(params Vector3[] bounding)
        {
            Vector3 min = bounding[0];

            for (int i = 1; i < bounding.Length; i++)
            {
                min = Vector3.Minimize(min, bounding[i]);
            }
            return(min);
        }