Updated instructions.

This commit is contained in:
Jacob Signorovitch 2024-12-16 00:17:31 -05:00
parent 1171143479
commit 2c15a3202d
2 changed files with 4 additions and 4 deletions

View File

@ -11,9 +11,9 @@ git clone https://git.signorovitch.org/jacob/ln-fractal && cd ln-fractal
make
```
This will generate a series of frames zooming into the fractal (default is 20),
This will generate a series of frames zooming into the fractal (default is 50),
and link them together into a video. May take a while to run, depending on your
CPU. The video is saved as `output.mp4`, and the frames can be viewed directly
in `imgs/`.
CPU (takes about 30s on an i9-12900K with 24 threads). The video is saved as
`output.mp4`, and the frames can be viewed directly in `imgs/`.
![h.png](h.png)

View File

@ -2,7 +2,7 @@ use image::{ImageBuffer, Rgb};
use rayon::prelude::*;
// Number of frames to generate.
const FRAMES: u32 = 20;
const FRAMES: u32 = 50;
// Frame size.
const IMGW: u32 = 1024;