in this tutorial we will create an app with gtk 3.0 and rust to display the mandelbrot set.
from https://en.wikipedia.org/wiki/Mandelbrot_set:
"The Mandelbrot set (/ˈmændəlbrɒt/) is the set of complex numbers c for which the function fc(z)=z² + c does not diverge when iterated from z = 0, i.e., for which the sequence f(0),f(f(0)), etc., remains bounded in absolute value."
The Mandelbrot set is known for its surprising beauty comming from such a simple formula. It is also a popular example for self-similarity.
rust is a modern low-level programming language that focuses on security and speed. It is free and open-source.
You can find more information about it at https://www.rust-lang.org/.
gtk is a free and open-source GUI library that provides many language bindings. It can run on Linux, MS Windows and MacOS.
You can find more information about it at https://gtk.org/.