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

Negate() public static method

Used to negate the elements of a vector.
public static Negate ( Vector2 left ) : Vector2
left Vector2
return Vector2
		public static Vector2 Negate( Vector2 left )
		{
			return -left;
		}