Abacus.SinglePrecision.Vector4Tests.GetNextRandomVector4 C# (CSharp) 메소드

GetNextRandomVector4() 정적인 개인적인 메소드

Helper function for getting the next random Vector4.
static private GetNextRandomVector4 ( ) : System.Vector4
리턴 System.Vector4
        static Vector4 GetNextRandomVector4 ()
        {
            Single a = GetNextRandomSingle();
            Single b = GetNextRandomSingle();
            Single c = GetNextRandomSingle();
            Single d = GetNextRandomSingle();

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