summaryrefslogtreecommitdiffstats
path: root/blobfoxhyperowo.sh
diff options
context:
space:
mode:
Diffstat (limited to 'blobfoxhyperowo.sh')
-rwxr-xr-xblobfoxhyperowo.sh34
1 files changed, 0 insertions, 34 deletions
diff --git a/blobfoxhyperowo.sh b/blobfoxhyperowo.sh
deleted file mode 100755
index d53b829..0000000
--- a/blobfoxhyperowo.sh
+++ /dev/null
@@ -1,34 +0,0 @@
1#!/bin/sh
2
3source ./shakeoffsets.sh
4
5declare -a shakeOffsets
6getShakeOffsets shakeOffsets
7
8
9mkdir -p export_tmp
10rm -f export_tmp/*
11
12
13counter=1
14while [ $counter -le 75 ]
15do
16 offset=${shakeOffsets[counter-1]}
17 file=`printf "export_tmp/%s.png" $counter`
18 inkscape -z -e $file -a $offset "blobfoxhyperowo.svg"
19 ((counter++))
20done
21
22
23declare -a args
24
25counter=1
26while [ $counter -le 75 ]
27do
28 file=`printf "export_tmp/%s.png" $counter`
29 args+=($file 1:50)
30 ((counter++))
31done
32
33apngasm -o export/ablobfoxhyperowo.png ${args[@]}
34rm -f export_tmp/*