-
Notifications
You must be signed in to change notification settings - Fork 102
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
Parity with the JS version #2
Comments
this is great! thanks for pointing this out. we already discovered the hash key overrun issue, but came up with a different fix - essentially something like:
but also added a guard for division by zero (admittedly not as much of an issue in js) for the case that:
|
@morishuz your hash key fix will have a different behavior — essentially the last item in the hash will almost never be used. I'd recommend keeping parity with the JS version. As for the division by zero check — it's unnecessary because a point can't be equal to the seed triangles' circumcenter. |
@mourner thanks! It was a bit a surprise to see that issue discovered by @morishuz with hashing was just fixed in JS version along with other improvements. Yes that's a plan:
|
Also note that the code changed quite a bit in mapbox/delaunator#32 |
Not sure about 4f072c2 My test does not show broken triangles even without race condition fix 🤔 |
Made it finally very close to |
Awesome! There's also this nice optimization that didn't yet make it into release but will: mapbox/delaunator#33 |
@delfrrr happy to discover this port — great work! Just wanted to point out that several fixes that were made in the last week are very important for the algorithm robustness, so should definitely be ported out:
I'd also recommend porting over the tests from the JS version to make sure the edge cases are handled the same way.
The text was updated successfully, but these errors were encountered: