Compare commits

..

3 Commits

Author SHA1 Message Date
Tonton Th
b3030b886d Blob_Boxed is alive 2026-02-16 23:55:40 +01:00
Tonton Th
b246f3ba23 another try... 2026-02-16 23:53:20 +01:00
Tonton Th
27b37f17dd fix an of-by-0.2 bug 2026-02-16 19:51:47 +01:00
3 changed files with 8 additions and 6 deletions

View File

@@ -398,8 +398,9 @@ union {
#end // for #end // for
/* --------- les trucs dans le Y positif */ /* --------- les trucs dans le Y positif */
object { OpenBox(1.6, 0.11) translate <-3, 3.58, 112> } // object { OpenBox(1.6, 0.11) translate <-3, 3.58, 112> }
object { OpenBox(1.6, 0.11) rotate y*45 translate <3, 6.7, 166> } object { Blob_Boxed scale 4 translate <-3, 3.58, 112> }
object { Blob_Boxed scale 4 rotate y*45 translate <3, 6.7, 161> }
} }
} }

View File

@@ -13,7 +13,7 @@ set -e ; set -u
source tools/config.sh source tools/config.sh
source tools/fonctions.sh source tools/fonctions.sh
START=50 START=1
if [ $# == 1 ] if [ $# == 1 ]
then then
START=$1 START=$1
@@ -32,9 +32,10 @@ do
imgB=$(printf "frames/Spool/%05d.png" $((frame-1))) imgB=$(printf "frames/Spool/%05d.png" $((frame-1)))
imgC=$(printf "frames/TMP/%05d.png" $frame) imgC=$(printf "frames/TMP/%05d.png" $frame)
# echo $imgA $imgB # echo $imgA $imgB
printf "%d " $frame printf "%8d" $frame
composite $imgA $imgB \ composite $imgA $imgB \
-blend 70% \ -blend 50% \
-blur 1x1 \
$imgC $imgC
done done

View File

@@ -43,7 +43,7 @@ union {
#for (foo, 0, 359.99, 15) #for (foo, 0, 359.99, 15)
#local Dx = Ra * sin(radians(foo)); #local Dx = Ra * sin(radians(foo));
#local Dz = Ra * cos(radians(foo)); #local Dz = Ra * cos(radians(foo));
cylinder { 0, y*(3.2*KY), Rb*0.72 cylinder { 0, y*(3*KY), Rb*0.72
#local R = rand(Rng1); #local R = rand(Rng1);
#if (R < 0.67) texture { tPlasticPrune } #if (R < 0.67) texture { tPlasticPrune }
#else texture { tPlasticGreen } #else texture { tPlasticGreen }