Compare commits
No commits in common. "cffc6dedfbb9a051149fa1cd69d6c456a445e2a4" and "8f92cc1787342421109a8610afbf4f815922a68e" have entirely different histories.
cffc6dedfb
...
8f92cc1787
12
draw.sh
12
draw.sh
|
@ -15,12 +15,7 @@ if [[ "${1}" == "" ]]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
END=-1
|
||||
if [[ "${3}" != "" ]]; then
|
||||
END=${3}
|
||||
fi
|
||||
|
||||
if [[ "${2}" == "" ]] && [[ $2 -eq 0 ]]; then
|
||||
if [ "${2}" == "" ]; then
|
||||
name=`basename "${1}"`
|
||||
bash field.sh "${name}"
|
||||
|
||||
|
@ -59,11 +54,6 @@ for svg in "${1}"*.svg ; do
|
|||
rm -f "${number}"
|
||||
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..."
|
||||
done
|
||||
|
||||
|
|
|
@ -27,11 +27,11 @@ mkdir -p "${OUTPUT}"
|
|||
FRAMERATE=12
|
||||
WIDTH=404
|
||||
HEIGHT=374
|
||||
DOTSIZE=6
|
||||
DOTSIZE=5
|
||||
MAXGENERATIONS=50
|
||||
MAXPARTICLES=900
|
||||
MINDOTSIZE=0.5
|
||||
LINE=0.5
|
||||
MAXPARTICLES=1000
|
||||
MINDOTSIZE=0.3
|
||||
LINE=0.3
|
||||
FILL=true
|
||||
MODE="stipple" #stipple/tsp
|
||||
|
||||
|
|
Loading…
Reference in New Issue