Abacus.DoublePrecision.Vector4Tests.GetNextRandomVector4 C# (CSharp) Method

GetNextRandomVector4() static private method

Helper function for getting the next random Vector4.
static private GetNextRandomVector4 ( ) : System.Vector4
return System.Vector4
        static Vector4 GetNextRandomVector4 ()
        {
            Double a = GetNextRandomDouble();
            Double b = GetNextRandomDouble();
            Double c = GetNextRandomDouble();
            Double d = GetNextRandomDouble();

            return new Vector4(a, b, c, d);
        }
Vector4Tests