MHB What Type of Math is Used in Fortune's Algorithm?

  • Thread starter Thread starter RidiculousName
  • Start date Start date
  • Tags Tags
    Algorithm Type
AI Thread Summary
Fortune's Algorithm is recognized as one of the fastest methods for generating Voronoi diagrams, which are essential in procedural generation. To understand this algorithm, familiarity with computational geometry is crucial. Key mathematical concepts include geometry, algorithms, and possibly some aspects of calculus. Exploring the sweep line algorithm can provide foundational knowledge that aids in grasping how Voronoi diagrams are constructed. Additionally, attempting to create a simple algorithm based on visual examples, such as those found in GIFs on Wikipedia, can enhance understanding and practical skills in this area.
RidiculousName
Messages
28
Reaction score
0
I've heard that Fortune's Algorithm is the fastest algorithm yet found to generate a voronoi diagram. I am far from being able to understand it, but I got interested in it because I want to learn about procedural generation. My question is, what sort of mathematics would I have to be familiar with to understand it?

In case you are unfamiliar with it, there is a pseudocode version here.
I can't copy/paste it because it has unusual characters that don't seem to translate on this forum.
 
Technology news on Phys.org
You could look into the sweep line algorithm first, and then go back to how the diagram is generated. This algorithms hail from the realm of "computational geometry". It might be useful to look at a text on this topic.

Another thing I would try to do is just try come up with an algorithm yourself from looking at the gif in the wiki page.
 
Dear Peeps I have posted a few questions about programing on this sectio of the PF forum. I want to ask you veterans how you folks learn program in assembly and about computer architecture for the x86 family. In addition to finish learning C, I am also reading the book From bits to Gates to C and Beyond. In the book, it uses the mini LC3 assembly language. I also have books on assembly programming and computer architecture. The few famous ones i have are Computer Organization and...
I have a quick questions. I am going through a book on C programming on my own. Afterwards, I plan to go through something call data structures and algorithms on my own also in C. I also need to learn C++, Matlab and for personal interest Haskell. For the two topic of data structures and algorithms, I understand there are standard ones across all programming languages. After learning it through C, what would be the biggest issue when trying to implement the same data...
Back
Top