Abacus.DoublePrecision.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 ()
        {
            Double a = GetNextRandomDouble();
            Double b = GetNextRandomDouble();
            Double c = GetNextRandomDouble();

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