I am debugging a bug very similar (if not the same) as in #278 and after studying the code I wonder why does spherical_geometry need to store and manipulate the inside point. Given a list of points, we can pick among the two possible choices the one which gives the polygon with positive area as calculated by SphericalPolygon.area(). So the ordering of the points (CW or CCW) will implicitly determine the polygon. Or I am missing something?
I am debugging a bug very similar (if not the same) as in #278 and after studying the code I wonder why does
spherical_geometryneed to store and manipulate the inside point. Given a list of points, we can pick among the two possible choices the one which gives the polygon with positive area as calculated bySphericalPolygon.area(). So the ordering of the points (CW or CCW) will implicitly determine the polygon. Or I am missing something?