Core.LineSegment.signedTriangleSquare C# (CSharp) Method

signedTriangleSquare() private static method

private static signedTriangleSquare ( Point a, Point b, Point c ) : int
a Point
b Point
c Point
return int
        private static int signedTriangleSquare(Point a, Point b, Point c)
        {
            return (b.X - a.X)*(c.Y - a.Y) - (b.Y - a.Y)*(c.X - a.X);
        }