Compare commits
5 Commits
090981d84c
...
929d59b169
Author | SHA1 | Date | |
---|---|---|---|
![]() |
929d59b169 | ||
![]() |
8cbae25479 | ||
![]() |
8368fe54e8 | ||
![]() |
2fa9a9918a | ||
![]() |
2a59fba488 |
13
Makefile
13
Makefile
@ -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$@
|
||||
|
||||
|
||||
|
11
contexte.inc
11
contexte.inc
@ -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 {
|
||||
|
@ -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>
|
||||
}
|
||||
|
@ -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
|
||||
|
||||
}
|
||||
|
||||
|
@ -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++) { \
|
||||
|
Loading…
Reference in New Issue
Block a user