blob: 9063384823e4d25bfcae197bf5ba214bb4e928cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Writhing Mass of Flesh
This program procedurally generates a GIF that resembles a writhing mass
of flesh. Originally, it was intended to be bubbles, but so it goes.
The easiest way to download and compile this is simply
```sh
cargo install writhing_mass_of_flesh
```
Alternatively, you can clone the repository and run
```sh
cargo build --release
```
and the program will be `./target/release/writhing_mass_of_flesh`
USAGE:
```sh
writhing_mass_of_flesh --width <WIDTH> --height <HEIGHT> --frames <FRAMES> --num-cells <NUM_CELLS> --out <OUT>
```
OPTIONS:
```
-f, --frames <FRAMES> number of gif frames
-h, --height <HEIGHT> height of the image
--help Print help information
-n, --num-cells <NUM_CELLS> number of cells to generate
-o, --out <OUT> output file
-V, --version Print version information
-w, --width <WIDTH> width of the image
```
|