cosmetic changes

This commit is contained in:
tth 2022-02-11 10:23:13 +01:00
parent 8b1a45c1d9
commit dd3cbe5dff
2 changed files with 14 additions and 10 deletions

View File

@ -29,7 +29,7 @@ printf "\n#declare NbImg = %d;\n" $NBIMG > nbimg.inc
# first, we have to make a seminal buch of bloubs
# --> this function need to be paraletrizable
#
./genbloubs ${BLBS_IN} 9999
./genbloubs ${BLBS_IN} 5000
for idx in $(seq 0 $NBIMG)
do
@ -47,11 +47,11 @@ do
fi
td=$(date +'%F %R:%S')
hi=$(printf "0x%04x" $idx)
hi=$(printf "#%05d" $idx)
PNG=$(printf "%s/%05d.png" ${DDIR} $idx)
convert ${TMPPNG} \
-font fixed \
-font Courier-Bold \
-pointsize 22 \
-fill CadetBlue \
-gravity south-east \

View File

@ -30,7 +30,7 @@ object {
plane {
<0, 1, 0>, 0
texture {
pigment { color Black }
pigment { color Gray05 }
finish { phong 0.18 metallic 0.45 }
}
}
@ -63,14 +63,18 @@ object { Les_Bornes }
// ----------------------------------------------------------
light_source { <4, 12, -11> color Gray80 }
light_source { <7, 19, 9> color Gray60 }
light_source { <9, 22, -17> color Gray80 }
light_source { <11, 19, 9> color Gray60 }
#declare HCAM = 5 + (9 * NormClock);
#declare HCAM = 5 + (11 * NormClock);
#fopen LC "log.camera" append
#write (LC, clock, " ", NormClock, " ", HCAM, "\n")
#fclose LC
camera {
location <6, HCAM, -16>
look_at <0, 0, 0>
location <7, HCAM, -16>
look_at <0, 1, 0>
right x*image_width/image_height
angle 49
angle 50
}