Abacus.SinglePrecision.Matrix44Tests.GetNextRandomMatrix44 C# (CSharp) Method

GetNextRandomMatrix44() static private method

Helper function for getting the next random Matrix44.
static private GetNextRandomMatrix44 ( ) : Matrix44
return Matrix44
        internal static Matrix44 GetNextRandomMatrix44 ()
        {
            Single a = GetNextRandomSingle();
            Single b = GetNextRandomSingle();
            Single c = GetNextRandomSingle();
            Single d = GetNextRandomSingle();

            Single e = GetNextRandomSingle();
            Single f = GetNextRandomSingle();
            Single g = GetNextRandomSingle();
            Single h = GetNextRandomSingle();

            Single i = GetNextRandomSingle();
            Single j = GetNextRandomSingle();
            Single k = GetNextRandomSingle();
            Single l = GetNextRandomSingle();

            Single m = GetNextRandomSingle();
            Single n = GetNextRandomSingle();
            Single o = GetNextRandomSingle();
            Single p = GetNextRandomSingle();

            return new Matrix44(
                a, b, c, d,
                e, f, g, h,
                i, j, k, l,
                m, n, o, p);
        }
Matrix44Tests