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

Cross() public method

Calculates the 2 dimensional cross-product of 2 vectors, which results in a Real value which is 2 times the area of the triangle defined by the two vectors. It also is the magnitude of the 3D vector that is perpendicular to the 2D vectors if the 2D vectors are projected to 3D space.
public Cross ( Vector2 vector ) : Real
vector Vector2
return Real
		public Real Cross( Vector2 vector )
		{
			return this.x * vector.y - this.y * vector.x;
		}