Live data from Hacker News

Visualizing Delaunay Triangulation

ianthehenry.com

1–10 of 24 posts

Re: Visualizing Delaunay Triangulation

#3

Really entertaining read, had a few laughs throughout! but for some reason the text doesn't fracture properly on Brave/Chrome. Here's a video demonstrating the problem: https://anno.so/71yMRyQfDXnm0QoHNpT6d/1

Haaaah. Oh that's a nightmare. Thanks! I think I fixed it in a portable way...

Re: Visualizing Delaunay Triangulation

#6
The Delaunay tree link in footnote 14 doesn’t work.

But in any case you can build and incrementally update an AABB tree of the triangles to efficiently find the triangle containing query points, right? Though you need to rebuild the AABB tree if it gets too unbalanced.

Re: Visualizing Delaunay Triangulation

#8
Implementing the Delaunay Triangulation was my first task on my first programming job. Good memories. Spent way too much time over-engineering it against degenerate cases and floating point issues. And then in the end I think it never ended up in production.

Re: Visualizing Delaunay Triangulation

#9
This is very helpful. I'm using Delaunay triangulation on a project (implemented by a 3rd party library) and this really helps understand the natural data structure to use when doing manipulations. Much better than my own naive attempt, which ran into the exact mess that the author described.
Post reply on HN