Returns true iff c is strictly to the left of the directed line through a to b.
| 180 | // Returns true iff c is strictly to the left of the directed |
| 181 | // line through a to b. |
| 182 | inline bool left(const int* a, const int* b, const int* c) |
| 183 | { |
| 184 | return area2(a, b, c) < 0; |
| 185 | } |
| 186 | |
| 187 | inline bool leftOn(const int* a, const int* b, const int* c) |
| 188 | { |
no test coverage detected