(&self, other: &Self)
| 21 | // Defines an order for Points so they can be sorted |
| 22 | impl Ord for Point { |
| 23 | fn cmp(&self, other: &Self) -> Ordering { |
| 24 | // Neither field of Point will be NaN, so this is safe |
| 25 | self.partial_cmp(other).unwrap() |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | // Determines whether the angle abc is clockwise, counter-clockwise or colinear |
nothing calls this directly
no test coverage detected