aboutsummaryrefslogtreecommitdiffstats
path: root/makerotate.sh
diff options
context:
space:
mode:
authorepoch <epoch@hacking.allowed.org>2018-02-21 04:06:55 -0600
committerepoch <epoch@hacking.allowed.org>2018-02-21 04:06:55 -0600
commitcc26a11eec7b0df5a5b4c35ec5cc1ee816556ef8 (patch)
treeac261482d558f4e4ff54e80df9dc0670db11eb7c /makerotate.sh
parent4ce1fe528d5fcf7826487673fb7669977a4cb523 (diff)
downloadhackvr-cc26a11eec7b0df5a5b4c35ec5cc1ee816556ef8.tar.gz
hackvr-cc26a11eec7b0df5a5b4c35ec5cc1ee816556ef8.zip
made makerotate rotate through all dimensions... eventually.
Diffstat (limited to 'makerotate.sh')
-rwxr-xr-xmakerotate.sh9
1 files changed, 7 insertions, 2 deletions
diff --git a/makerotate.sh b/makerotate.sh
index 364d96f..2746fab 100755
--- a/makerotate.sh
+++ b/makerotate.sh
@@ -1,6 +1,11 @@
#!/bin/sh
while true;do
- for i in $(seq 0 359);do
- echo "$1 rotate 0 $i 0"
+ for x in $(seq 0 5 360);do
+ for y in $(seq 0 5 360);do
+ for z in $(seq 0 5 360);do
+ echo "$1 rotate $x $y $z"
+ sleep .0001
+ done
+ done
done
done