Compare commits

...

5 Commits

Author SHA1 Message Date
Tonton Th
929d59b169 made Repere an object 2024-12-29 19:02:14 +01:00
Tonton Th
8cbae25479 bla 2024-12-29 19:01:30 +01:00
Tonton Th
8368fe54e8 better messages 2024-12-29 18:45:06 +01:00
Tonton Th
2fa9a9918a small changes 2024-12-29 18:43:29 +01:00
Tonton Th
2a59fba488 cosmetic 2024-12-29 18:42:52 +01:00
6 changed files with 23 additions and 16 deletions

View File

@ -5,17 +5,20 @@ POVDEP = contexte.inc elements.inc \
globals.inc datas/hf.png
PNG: essai.png scene.png topview.png
PNG: essai.png scene.png topview.png passage.png
topview.png: topview.pov Makefile $(POVDEP)
povray $(POVOPT) -K200 -W1280 -H1024 -i$< -o$@
povray $(POVOPT) -W1280 -H1024 -K359 -i$< -o$@
essai.png: essai.pov Makefile $(POVDEP)
povray $(POVOPT) -W800 -H600 -i$< -o$@
povray $(POVOPT) -W1280 -H1024 -i$< -o$@
CK=306
passage.png: passage.pov Makefile $(POVDEP)
povray $(POVOPT) -W1280 -H1024 -K300 -i$< -o$@
CK=175
scene.png: scene.pov Makefile $(POVDEP)
povray $(POVOPT) -W3200 -H2400 +K${CK} -i$< -o$@
povray $(POVOPT) -W1280 -H1024 +K${CK} -i$< -o$@

View File

@ -52,10 +52,13 @@ height_field {
}
#if (0)
cylinder { 0, <1, 0, 0>, 0.005 pigment { color Red } }
cylinder { 0, <0, 0, 1>, 0.005 pigment { color Blue } }
#end
#declare Repere = object
{
union {
cylinder { 0, <1, 0, 0>, 0.007 pigment { color Red } }
cylinder { 0, <0, 0, 1>, 0.007 pigment { color Blue } }
}
}
#if (1)
light_source {

View File

@ -38,7 +38,7 @@ union {
#local xR = (rand(Rng2)-0.5000) * kR;
#local yR = (rand(Rng2)-0.5000) * kR;
#local zR = (rand(Rng2)-0.5000) * kR;
#local Red = abs(sin(NormClock * 55.536));
#local Red = abs(sin(NormClock * 35.536));
#local Red = Red * rand(Rng2);
light_source { <xR, yR, xR>, rgb <Red, 0.03, 0.03>
fade_distance 0.99
@ -198,7 +198,7 @@ texture { T_Brass_1C }
{
union {
object { Tuyere }
object { Le_rotor rotate x*(clock*3.8) translate -0.06*x }
object { Le_rotor rotate x*(clock*5.8) translate -0.06*x }
}
}
@ -225,5 +225,4 @@ union {
object { HexaCone_derives translate <0, 0, -0.67> }
object { Les_Reacteurs translate -0.18*y }
}
rotate < 3, 0, -4>
}

View File

@ -14,8 +14,8 @@ ffmpeg -nostdin \
-tune film \
$FILMNAME
echo "$SRCDIR encoded to $FILNAME" | tee -a WS/log
wc -c full.mp4 | tee -a WS/log
echo "$SRCDIR -> $FILMNAME" | tee -a WS/log
wc -c $FILMNAME | tee -a WS/log
}

View File

@ -5,7 +5,7 @@ set -ue
TMPFILE="/dev/shm/plot-timing.tmp"
IMAGE="timing.png"
tail -1800 WS/mp4.timing | awk ' \
tail -3600 WS/mp4.timing | awk ' \
BEGIN { \
nbrames=360;
for (foo=0; foo<nbrames; foo++) { \

View File

@ -15,7 +15,9 @@
#include "contexte.inc"
#include "elements.inc"
object { HexaCone rotate y*17 translate y*1.11 }
object { HexaCone
rotate < 3, 0, -4>
rotate y*17 translate y*1.11 }
#declare CK = 56 + (clock * 1);
#declare Dcam = 2.04;