Sharpex2D.Math.Vector2.Vector2 C# (CSharp) Method

Vector2() public method

Initializes a new instance of the Vector2 struct.
public Vector2 ( float x, float y ) : System
x float The x.
y float The y.
return System
        public Vector2(float x, float y)
        {
            _x = x;
            _y = y;
        }

Same methods

Vector2::Vector2 ( float value ) : System