diff --git a/seq.sh b/seq.sh index a7f1448..54901da 100644 --- a/seq.sh +++ b/seq.sh @@ -7,7 +7,7 @@ # ########################### -MULTIPLE=2 +MULTIPLE=3 FPS=24 RATE=`echo "scale=0;${FPS}/${MULTIPLE}" | bc` TIMESTR="" diff --git a/stipple.sh b/stipple.sh index 63c8ae1..7fb2e4c 100644 --- a/stipple.sh +++ b/stipple.sh @@ -25,7 +25,7 @@ fi mkdir -p "${OUTPUT}" -MULTIPLE=2 +MULTIPLE=3 FPS=24 RATE=`echo "scale=0;${FPS}/${MULTIPLE}" | bc` diff --git a/stipple_sine.sh b/stipple_sine.sh index 77cc02a..83f56aa 100644 --- a/stipple_sine.sh +++ b/stipple_sine.sh @@ -28,7 +28,7 @@ mkdir -p "${OUTPUT}" PI=3.14159265359 FPS=24 -MULTIPLE=2 +MULTIPLE=3 STEP=$(echo "scale=6;360/45" | bc -l) AMP=1.0 STARTANGLE=270 @@ -43,8 +43,8 @@ DOTSIZE_MAX=6 DOTSIZE_HALF=`echo "scale=6;($DOTSIZE_MAX - $DOTSIZE_MIN) / 2" | bc` DOTSIZE=`echo "scale=6;($DOTSIZE_MIN + $DOTSIZE_HALF)" | bc` DOTSIZE_MULTIPLE=$DOTSIZE_HALF -PARTICLES_MIN=300 -PARTICLES_MAX=650 +PARTICLES_MIN=200 +PARTICLES_MAX=1000 PARTICLES_HALF=`echo "($PARTICLES_MAX - $PARTICLES_MIN) / 2" | bc` PARTICLES=$((PARTICLES_MIN+PARTICLES_HALF)) PARTICLES_MULTIPLE=$PARTICLES_HALF