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

Parity with the JS version #2

Closed
6 tasks done
mourner opened this issue Sep 6, 2018 · 7 comments
Closed
6 tasks done

Parity with the JS version #2

mourner opened this issue Sep 6, 2018 · 7 comments
Assignees

Comments

@mourner
Copy link
Contributor

mourner commented Sep 6, 2018

@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.

@morishuz
Copy link
Collaborator

morishuz commented Sep 6, 2018

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:

return Math.floor(pseudoAngle(x - this._cx, y - this._cy) * (this._hashSize-1)

but also added a guard for division by zero (admittedly not as much of an issue in js) for the case that:

(Math.abs(dx) + Math.abs(dy) = 0

@mourner
Copy link
Contributor Author

mourner commented Sep 6, 2018

@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.

@delfrrr
Copy link
Owner

delfrrr commented Sep 7, 2018

@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:

  • delaunator-cpp as a port should follow the logic of JS version as close as possible so it's easy to port new changes
  • I will add test from JS version (already started)
  • Then I will port new changes provided by @mourner

@mourner
Copy link
Contributor Author

mourner commented Sep 10, 2018

Also note that the code changed quite a bit in mapbox/delaunator#32

@delfrrr
Copy link
Owner

delfrrr commented Sep 20, 2018

Not sure about 4f072c2

My test does not show broken triangles even without race condition fix 🤔

@delfrrr
Copy link
Owner

delfrrr commented Sep 26, 2018

Made it finally very close to delaunator@3.0.1; I guess that's it

@delfrrr delfrrr closed this as completed Sep 26, 2018
@mourner
Copy link
Contributor Author

mourner commented Sep 26, 2018

Awesome! There's also this nice optimization that didn't yet make it into release but will: mapbox/delaunator#33

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants