diff options
author | epoch <epoch@hacking.allowed.org> | 2017-12-19 04:04:34 -0600 |
---|---|---|
committer | epoch <epoch@hacking.allowed.org> | 2017-12-19 04:04:34 -0600 |
commit | 826eff5bb47181cf38e16c6658c7876a3e0b7183 (patch) | |
tree | 169ca8643768203471516acca9eacbd4184820a0 | |
parent | 1069c59f786cced9a8ef7d8bd492acf2db6e1091 (diff) | |
download | hackvr-826eff5bb47181cf38e16c6658c7876a3e0b7183.tar.gz hackvr-826eff5bb47181cf38e16c6658c7876a3e0b7183.zip |
fixed offsetshape to start looping in the right spot. oops.
-rwxr-xr-x | tools/offsetshape.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/offsetshape.sh b/tools/offsetshape.sh index 928a759..3362e3b 100755 --- a/tools/offsetshape.sh +++ b/tools/offsetshape.sh @@ -1,5 +1,3 @@ #!/bin/sh #objectname addshape color points_in_shape -echo offsetshape: $1 $2 $3 -awk '{ for(i=4;i<=(4+($4*3));i+=3){$i+='"$1"';$(i+1)+='"$2"';$(i+2)+='"$3"';} print $0;}' - +awk '{ for(i=5;i<=(4+($4*3));i+=3){$i+='"$1"';$(i+1)+='"$2"';$(i+2)+='"$3"';} print $0;}' |