Compare commits
2 Commits
8f92cc1787
...
cffc6dedfb
Author | SHA1 | Date |
---|---|---|
|
cffc6dedfb | |
|
d37efd4619 |
12
draw.sh
12
draw.sh
|
@ -15,7 +15,12 @@ if [[ "${1}" == "" ]]; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "${2}" == "" ]; then
|
END=-1
|
||||||
|
if [[ "${3}" != "" ]]; then
|
||||||
|
END=${3}
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ "${2}" == "" ]] && [[ $2 -eq 0 ]]; then
|
||||||
name=`basename "${1}"`
|
name=`basename "${1}"`
|
||||||
bash field.sh "${name}"
|
bash field.sh "${name}"
|
||||||
|
|
||||||
|
@ -54,6 +59,11 @@ for svg in "${1}"*.svg ; do
|
||||||
rm -f "${number}"
|
rm -f "${number}"
|
||||||
bash position.sh reset
|
bash position.sh reset
|
||||||
|
|
||||||
|
if [[ $END -gt -1 ]] && [[ $END -eq $i ]]; then
|
||||||
|
echo "Reached final frame $i, exiting..."
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
askContinue "Continuing with next frame..."
|
askContinue "Continuing with next frame..."
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
|
@ -27,11 +27,11 @@ mkdir -p "${OUTPUT}"
|
||||||
FRAMERATE=12
|
FRAMERATE=12
|
||||||
WIDTH=404
|
WIDTH=404
|
||||||
HEIGHT=374
|
HEIGHT=374
|
||||||
DOTSIZE=5
|
DOTSIZE=6
|
||||||
MAXGENERATIONS=50
|
MAXGENERATIONS=50
|
||||||
MAXPARTICLES=1000
|
MAXPARTICLES=900
|
||||||
MINDOTSIZE=0.3
|
MINDOTSIZE=0.5
|
||||||
LINE=0.3
|
LINE=0.5
|
||||||
FILL=true
|
FILL=true
|
||||||
MODE="stipple" #stipple/tsp
|
MODE="stipple" #stipple/tsp
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue