Abacus.SinglePrecision.Vector3Tests.GetNextRandomVector3 C# (CSharp) Method

GetNextRandomVector3() static private method

Helper function for getting the next random Vector3.
static private GetNextRandomVector3 ( ) : System.Vector3
return System.Vector3
        static Vector3 GetNextRandomVector3 ()
        {
            Single a = GetNextRandomSingle();
            Single b = GetNextRandomSingle();
            Single c = GetNextRandomSingle();

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