https://github.com/pacman82/mandelbrot
https://github.com/pacman82/mandelbrot
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pacman82/mandelbrot
- Owner: pacman82
- Created: 2017-11-17T20:05:57.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-06-07T06:52:26.000Z (about 3 years ago)
- Last Synced: 2025-02-07T00:42:32.095Z (4 months ago)
- Language: Rust
- Size: 69.3 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mandelbrot
As the name suggests this application draws a Mandelbrot fractal. This means it interprets each
position of a pixel as a complex number `c` and a assigns the pixel a color depending on how fast
the sequence `z(n + 1) = z(n) * z(n) + c` diverges. The application utilizes the GPU through OpenGL
and should run reasonably fast.## Build
This Application is written in Rust. So to build it you will need cargo. If you do not have cargo
installed yet, you can get it [here](https://rustup.rs).If you have cargo installed, just check this repository out and run:
```bash
cargo run --release
```To see a Mandelbrot fractal.
