Returns TRUE if the point C fall on the left side of the AB line. Orientation of the AB line determines the left and right side (i.e, starting at point A looking toward point B). Used to answer the question: Is point C on the left of the AB line?
start_left(a_x, a_y, b_x, b_y, c_x, c_y)
logical
Uses the cross product method. Taken from: [SO](https://stackoverflow.com/questions/1560492/how-to-tell-whether-a-point-is-to-the-right-or-left-side-of-a-line)