├── .gitignore ├── Cargo.toml ├── LICENSE ├── out ├── mandel_1920x1680-0.7_s4-2.png ├── mandelbrot_1920x1680-0.7_s1-2.png ├── mandelbrot_1920x1680-0.7_s1024-2.png ├── mandelbrot_1920x1680-0.7_s4-2.png ├── mandelbrot_1920x1680-0.7_s64-2.png └── mandelbrot_1920x1680-0.7_s8-2.png ├── readme.md └── src ├── color.rs ├── lib.rs ├── main.rs └── renderer.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | Cargo.lock 3 | binaries/ 4 | prep.sh -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahhhh6980/fracgen/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahhhh6980/fracgen/HEAD/LICENSE -------------------------------------------------------------------------------- /out/mandel_1920x1680-0.7_s4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahhhh6980/fracgen/HEAD/out/mandel_1920x1680-0.7_s4-2.png -------------------------------------------------------------------------------- /out/mandelbrot_1920x1680-0.7_s1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahhhh6980/fracgen/HEAD/out/mandelbrot_1920x1680-0.7_s1-2.png -------------------------------------------------------------------------------- /out/mandelbrot_1920x1680-0.7_s1024-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahhhh6980/fracgen/HEAD/out/mandelbrot_1920x1680-0.7_s1024-2.png -------------------------------------------------------------------------------- /out/mandelbrot_1920x1680-0.7_s4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahhhh6980/fracgen/HEAD/out/mandelbrot_1920x1680-0.7_s4-2.png -------------------------------------------------------------------------------- /out/mandelbrot_1920x1680-0.7_s64-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahhhh6980/fracgen/HEAD/out/mandelbrot_1920x1680-0.7_s64-2.png -------------------------------------------------------------------------------- /out/mandelbrot_1920x1680-0.7_s8-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahhhh6980/fracgen/HEAD/out/mandelbrot_1920x1680-0.7_s8-2.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahhhh6980/fracgen/HEAD/readme.md -------------------------------------------------------------------------------- /src/color.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahhhh6980/fracgen/HEAD/src/color.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahhhh6980/fracgen/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahhhh6980/fracgen/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/renderer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahhhh6980/fracgen/HEAD/src/renderer.rs --------------------------------------------------------------------------------