We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here, the flow is computed incorrectly. We are flowing in direction (0, 1) so we should not be able to go from (2, 1) to (2, 0).
sage: from flatsurf import Polygon sage: P = Polygon(vertices=[(1, 0), (1, -2), (3/2, -5/2), (2, -2), (2, 0), (2, 1), (2, 3), (3/2, 7/2), (1, 3), (1, 1)]) sage: P.flow_to_exit(vector((2, 1)), vector((0, 1))) ((2, 0), point positioned on vertex 4 of polygon) # should be: ((2, 3), point positioned on vertex 6 of polygon)
The text was updated successfully, but these errors were encountered:
Fix flow_to_exit() when there are collinear edges in polygon
96376a1
fixes flatsurf#258
Fixed in #211.
Sorry, something went wrong.
No branches or pull requests
Here, the flow is computed incorrectly. We are flowing in direction (0, 1) so we should not be able to go from (2, 1) to (2, 0).
The text was updated successfully, but these errors were encountered: