# 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. I recommend doing a 500x500 image with 100 cells and 100 frames to get the best balance of appearance and run time. 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 ``` which will put the compiled executable at `./target/release/writhing_mass_of_flesh` USAGE: ```sh writhing_mass_of_flesh --width --height --frames --num-cells --out ``` OPTIONS: ``` -f, --frames number of gif frames -h, --height height of the image --help Print help information -n, --num-cells number of cells to generate -o, --out output file -V, --version Print version information -w, --width width of the image ```