Abacus.SinglePrecision.Vector2Tests.GetNextRandomVector2 C# (CSharp) 메소드

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

Helper function for getting the next random Vector2.
static private GetNextRandomVector2 ( ) : System.Vector2
리턴 System.Vector2
        static Vector2 GetNextRandomVector2 ()
        {
            Single a = GetNextRandomSingle();
            Single b = GetNextRandomSingle();

            return new Vector2(a, b);
        }
Vector2Tests