Mandelbrot rendering with Rust

This page summarizes the projects mentioned and recommended in the original post on /r/rust

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • node_crunch

    Discontinued Allows to distribute computations across several nodes

  • mandel-rust

    Mandelbrot set in rust, serial and parallel example

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • mandelrust

    Renders an image of the Mandelbrot set at the specified location.

  • 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

    A Rust program that plots the Mandelbrot set, using various kinds of parallelism.

  • Mandelbrot is one of the demos in the first chapters of Programming Rust. It's a fairly complete program: https://github.com/ProgrammingRust/mandelbrot

  • mandelbrot

    An algorithm that draws an image of the mandelbrot set (by jakobdannel)

  • 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.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts