Antura.Helpers.MathHelper.Cross C# (CSharp) Method

Cross() static private method

static private Cross ( Vector2 a, Vector2 b ) : float
a Vector2
b Vector2
return float
        static float Cross(Vector2 a, Vector2 b)
        {
            return a.x * b.y - a.y * b.x;
        }