https://github.com/manorajesh/mandelbrot-rs
Interact with the Mandelbrot Set
https://github.com/manorajesh/mandelbrot-rs
fractal mandelbrot pixels rust
Last synced: 29 days ago
JSON representation
Interact with the Mandelbrot Set
- Host: GitHub
- URL: https://github.com/manorajesh/mandelbrot-rs
- Owner: manorajesh
- License: mit
- Created: 2023-08-07T01:30:14.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-08-27T01:36:38.000Z (almost 3 years ago)
- Last Synced: 2025-12-31T11:28:36.823Z (6 months ago)
- Topics: fractal, mandelbrot, pixels, rust
- Language: Rust
- Homepage:
- Size: 10.3 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mandelbrot-rs



Rustily interact with the mandelbrot set

## Installation
```shell
git clone https://github.com/manorajesh/mandelbrot-rs.git && cd mandelbrot-rs
cargo run --release
```
## Usage
`WIP`
## Why
Idea popped into my mind during a creative lull. Seemed easy enough while also pushing me along my graphics journey.
#### Important Code
The `calculate_pixel` and `draw_mandelbrot` functions are what determine each pixel and mutate the frame buffer accordingly.
Those familiar with [this](https://en.wikipedia.org/wiki/Plotting_algorithms_for_the_Mandelbrot_set) Wikipedia page will recognize the method.