pointInTriangle

fun pointInTriangle(minX: Double, maxX: Double, minY: Double, maxY: Double, x: Double, y: Double, aX: Double, aY: Double, bX: Double, bY: Double, cX: Double, cY: Double): Boolean

Compute whether the given x, y point is in a triangle; uses the winding order method