Some visualizations of algorithms and math made in processing / java
A simple visualization of the Mandelbrot-Set. Any complex number
On the right side is the corresponding Julia-Set. It uses the same formula as the Mandelbrot-Set, but instead of starting at
The graph for the first 10 values of x
.
This is a recreation of the Coding challange #146 from codingtrain. I might expand this further in the future. Basic movement is possible via WASD
. I could integrate the maze creating algorithm to have a more interesting scene.
A simple recursive backtracking algorithm using depth first search to generate a maze. Recreation of Coding Challange #10 from codingtrain.
Another codingtraing Coding Challenge (#98). Here it's to demonstrate the Quadtree data-structure, to minimize the load of other algorithms.
Still have to find the name of this thing. The idea is basically to have a circle of radius
Each shape rotates based on the number of vertices: if prime, it rotates clockwise, if even, it rotates counter-clockwise.
2D-Animation like the Warp-Speed-Effect from Star Trek. Points just speed up and increase in size depending on its distance to the center of the frame.
Shows the Feigenbaum-Diagram of the function
Footnotes
-
infinity in this case is defined as a certain threshold, at wich the algorithm stops. ↩