This commit is contained in:
Matt McWilliams 2021-12-02 01:04:23 -05:00
parent 5dc7eefe43
commit c39e22b197
1 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,8 @@
#!/bin/bash
pi=3.14159265358979323844
for (( frame=0; frame<=166; frame++ ))
for (( frame=0; frame<124; frame++ ))
do
echo "frame: ${frame}"
echo "scale=6;s(${frame}.0/12.0)" | bc -l
done