Abacus.SinglePrecision.Vector3Tests.GetNextRandomVector3 C# (CSharp) Метод

GetNextRandomVector3() статический приватный Метод

Helper function for getting the next random Vector3.
static private GetNextRandomVector3 ( ) : System.Vector3
Результат System.Vector3
        static Vector3 GetNextRandomVector3 ()
        {
            Single a = GetNextRandomSingle();
            Single b = GetNextRandomSingle();
            Single c = GetNextRandomSingle();

            return new Vector3(a, b, c);
        }
Vector3Tests