animation/position.sh

31 lines
507 B
Bash

#!/bin/bash
###########################
#
# Position the pen at an offset for a frame
# and resets the pen after it is complete.
#
###########################
XZIG=2.0
X=3.35 #4.2 - XZIG
Y=1.93
if [[ "${1}" == "" ]]; then
echo "Please provide an argument. Either 'set' or 'reset'."
exit 1
fi
if [ "${1}" == "set" ]; then
paxi up
paxi move $XZIG 0
paxi move 0 $Y
paxi move $X 0
paxi down
elif [ "${1}" == "reset" ]; then
paxi up
paxi move -$X 0
paxi move 0 -$Y
paxi move -$XZIG 0
paxi down
fi