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

Vector2() public method

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

Same methods

Vector2::Vector2 ( float x, float y ) : System