In the coco.py, line 337-348 ```python if sx0 < ox0 and sx1 > ox1 and sy0 < oy0 and sy1 > oy1: p = 'surrounding' elif sx0 > ox0 and sx1 < ox1 and sy0 > oy0 and sy1 < oy1: p = 'inside' elif theta >= 3 * math.pi / 4 or theta <= -3 * math.pi / 4: p = 'left of' elif -3 * math.pi / 4 <= theta < -math.pi / 4: p = 'above' elif -math.pi / 4 <= theta < math.pi / 4: p = 'right of' elif math.pi / 4 <= theta < 3 * math.pi / 4: p = 'below' ``` I have some doubts about the 'above' and 'below', i think they should be exchanged and the code is ```python elif -3 * math.pi / 4 <= theta < -math.pi / 4: p = 'below' elif math.pi / 4 <= theta < 3 * math.pi / 4: p = 'above' ```
In the coco.py, line 337-348
I have some doubts about the 'above' and 'below', i think they should be exchanged and the code is