Skip to content
New issue

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

fix fill extrusion querying for colinear points #9454

Merged
merged 1 commit into from
Mar 24, 2020

Commits on Mar 23, 2020

  1. fix fill extrusion querying for colinear points

    When checking for intersections with a fill-extrusion it has to
    calculate the distance to the plane the polygon exist on. If the first
    points of the geometry were colinear this calculation would fail.
    
    It now:
    - finds two distinct starting points a, b
    - loops over all the remaining vertices looking for a value that is not
    colinear with a, b
    
    Usually this will be the first vertex it encounters.
    ansis committed Mar 23, 2020
    Configuration menu
    Copy the full SHA
    116ff8f View commit details
    Browse the repository at this point in the history