Project290.Mathematics.tVector2.tVector2 C# (CSharp) Method

tVector2() public method

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.
return System
        public tVector2(float x, float y)
        {
            this.X = new tfloat(x);
            this.Y = new tfloat(y);
            this.tempV2 = new Vector2();
        }