Skip to content

Latest commit

 

History

History
25 lines (14 loc) · 1.19 KB

tutorial_0_introduction.md

File metadata and controls

25 lines (14 loc) · 1.19 KB

mandelbrot visualization tutorial

in this tutorial we will create an app with gtk 3.0 and rust to display the mandelbrot set.

0.0: What is 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."

mandelbrot_set

The Mandelbrot set is known for its surprising beauty comming from such a simple formula. It is also a popular example for self-similarity.

0.1: What is Rust?

logo

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

0.2: What is GTK?

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