# Bubbles 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 strongly recommend compiling in release mode because of the large amount of processing that has to happen: ``` cargo build --release ``` USAGE: ``` bubbles --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 ```