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

Vector2() 공개 메소드

Constructor.
public Vector2 ( Real x, Real y ) : System
x Real X position.
y Real Y position
리턴 System
		public Vector2( Real x, Real y )
		{
			this.x = x;
			this.y = y;
		}