summaryrefslogtreecommitdiffstats
path: root/blobfoxhyperowo.sh
diff options
context:
space:
mode:
authorFeuerfuchs <git@feuerfuchs.dev>2019-09-28 18:08:18 +0200
committerFeuerfuchs <git@feuerfuchs.dev>2019-09-28 18:08:18 +0200
commitf4754c009d97b963b0c9dfcb55811af795bc0035 (patch)
tree1c1ed9ce197fd692118f5d19ee0cfa111fe47216 /blobfoxhyperowo.sh
parentnew: hyperowo, moved animation offsets into function for reusability (diff)
downloadblobfox-emojis-f4754c009d97b963b0c9dfcb55811af795bc0035.tar.gz
blobfox-emojis-f4754c009d97b963b0c9dfcb55811af795bc0035.tar.bz2
blobfox-emojis-f4754c009d97b963b0c9dfcb55811af795bc0035.zip
new: hypercofe, generalized hyper script
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/*