Click anywhere to generate a new random graph.
- The nodes are colored by the number of their neighbors.
- Nodes with higher number of neighbours are bigger.
#!/usr/bin/env bash | |
################################################################################ | |
# Boilerplate Shell Script with getopt parsing | |
# | |
# This script is released to the Public Domain by Chad Walstrom | |
# Chad Walstrom <[email protected]>. | |
################################################################################ | |
NOACT=0 | |
NAME=$(basename $0|sed 's/\(\..*\)$//') | |
VERSION="0.1" |