-
-
CodeRabbit
CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
-
-
Some things come to mind that I have implemented when I did this same project to learn the language is to 1. Since the image is symmetric above and below the imaginary axis you actually only need to render half the image :D 2. If you check if (Re(c) + 1)^(2)*Im(c)^(2) < 0.0625 || abs(c)^(2)*(8*abs(c)^(2) - 3) <= 0.09375 - Re(c) you can directly see if the point is inside the main cardioid or period-2 bulb, saving a lot of computation.
-
Mandelbrot is one of the demos in the first chapters of Programming Rust. It's a fairly complete program: https://github.com/ProgrammingRust/mandelbrot
-
I've posted a pull request to clean up the hsl_to_rgb() function a bit. Hope it is informative.
-
rust-fractal-core
Mandelbrot fractal visualizer featuring perturbation based iteration methods, series approximation and multithreading.