minor changes also here

This commit is contained in:
tTh
2023-02-11 20:29:07 +01:00
parent c05d80a223
commit 87ff3d8815
7 changed files with 193 additions and 8 deletions

19
GrafAnim/runme.sh Executable file
View File

@@ -0,0 +1,19 @@
#!/bin/bash
set -e
SCRATCH="dummy.genplot"
make doubledice
rm -f F/????.tga
for foo in $(seq 1 250)
do
rm -f dummy.genplot
./doubledice $foo
filename=$(printf "F/%04d.tga" $foo)
genplot2 -s 640x480 ${SCRATCH} $filename
done
convert -delay 10 F/????.tga foo.gif