torchsig.utils.coordinate_system.counter_clock_wise¶
- torchsig.utils.coordinate_system.counter_clock_wise(a: Coordinate, b: Coordinate, c: Coordinate) bool[source]¶
Determine if three points a, b, c are in counter-clockwise order.
- Parameters:
a (Coordinate) – First point.
b (Coordinate) – Second point.
c (Coordinate) – Third point.
- Returns:
True if the sequence (a → b → c) is counter-clockwise.
- Return type: