Axiom.Math.Vector2.operator C# (CSharp) Method

operator() public static method

Used when a Vector2 is added to another Vector2.
public static operator ( ) : Vector2
return Vector2
		public static Vector2 operator +( Vector2 left, Vector2 right )
		{
			return new Vector2( left.x + right.x, left.y + right.y );
		}

Same methods

Vector2::operator ( ) : bool