From c39e22b197defd48ad3760805ad30913aa350b1a Mon Sep 17 00:00:00 2001 From: mattmcw Date: Thu, 2 Dec 2021 01:04:23 -0500 Subject: [PATCH] sim work --- simulation.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/simulation.sh b/simulation.sh index 63d5212..bce3e80 100644 --- a/simulation.sh +++ b/simulation.sh @@ -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