Project290.Mathematics.tVector2.tVector2 C# (CSharp) 메소드

tVector2() 공개 메소드

Initializes a new instance of the tVector2 class.
public tVector2 ( float x, float y ) : System
x float The x value.
y float The y value.
리턴 System
        public tVector2(float x, float y)
        {
            this.X = new tfloat(x);
            this.Y = new tfloat(y);
            this.tempV2 = new Vector2();
        }