CatEye.Core.Vector.CrossProduct C# (CSharp) 메소드

CrossProduct() 공개 정적인 메소드

Векторное произведение
public static CrossProduct ( Vector a, Vector b ) : double
a Vector
b Vector
리턴 double
        public static double CrossProduct(Vector a, Vector b)
        {
            return a.m_x * b.m_y - a.m_y * b.m_x;
        }