Fractal Renderer
Sona
November 25, 2023
Mandelbrot fractal research repo
Introduction
I've worked on this project several times now and I've split it up into several parts:
C
My first try at a renderer was using a guide provided by Tsoding in his project .
- olive.c
Using these basic concepts, I then used the tutorial provided by The Coding Train to render a mandelbrot fractal:
- The Coding Train challenge: mandel brot set in p5.js
has my first c port. Afterwards, I tried parallelizing my renderer
using multithreading and openmp: ~~is
in the works but it's supposed to be the same as mandelbrot-gamma but using
lambdas~~ I will probably remove this further on since mandelbrot-gamma has
proven to be the way forward for this project.
Here it is:
TODO():
- [x] histogram coloring
- [x] fancy colors
- [x] specify spot to generate in
- even has zoom now
- [ ] animate
Discussion in the ATmosphere