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

operator() public static method

public static operator ( ) : bool
return bool
		public static bool operator ==( Vector2 left, Vector2 right )
		{
			return left.x == right.x && left.y == right.y;
		}

Same methods

Vector2::operator ( ) : Vector2