Abacus.DoublePrecision.Vector4Tests.GetNextRandomVector4 C# (CSharp) Метод

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

Helper function for getting the next random Vector4.
static private GetNextRandomVector4 ( ) : System.Vector4
Результат 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