cellular
is a command-line tool that allows for generation of gif images using elementary cellular automata. (Read more about elementary cellular automata here.) It supports starting automata with random seeds as well as providing initial inputs directly through the command line or from a file.
bash
cargo install cellular
bash
tar -xvzf cellular-x.y.z.tar.gz .
cd cellular
cargo install --path .
Run the following to see all available options and flags
bash
cellular --help
bash
cellular --width 800 --height 600 --frames 100 --density 0.6 --rule 106 --output hello_cellular.gif
or
bash
cellular -w 800 -h 600 -f 100 -d 0.6 -r 106 -o hello_cellular.gif
All options and their shortcut syntax are shown when the help flag is passed
``` → cellular --help cellular A simple command-line based cellular automaton animation creator
USAGE:
cellular [FLAGS] [OPTIONS] --frames
FLAGS: --help Prints help information -n, --no-prog disable progress bar -V, --version Prints version information
OPTIONS:
-b, --bitmap
bash
echo "10010111000111" > file
cellular --bitmap 10010111000111 -h 600 -f 100 -d 0.6 -r 106 -o hello_cellular.gif
bash
echo "10010111000111" > file
cellular --infile file -h 600 -f 100 -d 0.6 -r 106 -o hello_cellular.gif