Sharpex2D.Math.Vector2.Vector2 C# (CSharp) 메소드

Vector2() 공개 메소드

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

Same methods

Vector2::Vector2 ( float value ) : System