Fixed typo, updated README

This commit is contained in:
Jacob Signorovitch 2024-12-16 00:12:53 -05:00
parent 720995f5b5
commit 0af4b47053
2 changed files with 5 additions and 4 deletions

View File

@ -11,8 +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), and link them together into a video. May take a while to run, depending
on your CPU.
This will generate a series of frames zooming into the fractal (default is 20),
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/`.
![h.png](h.png)

View File

@ -15,7 +15,7 @@ const ESCRAD: f64 = 2.4;
// Target coordinates (what to "zoom in on" with each new frame.)
const TARGX: f64 = -0.4638686756;
const TARGX: f64 = 0.0723647;
const TARGY: f64 = 0.0723647;
fn main() {
let w = IMGW as f64;