last commits before xmas
This commit is contained in:
parent
35db5eb9e2
commit
17e72ea61c
11
essai.pov
11
essai.pov
@ -13,16 +13,17 @@
|
|||||||
#include "incs/grue.inc"
|
#include "incs/grue.inc"
|
||||||
|
|
||||||
// object { Boogie }
|
// object { Boogie }
|
||||||
object { Grande_Roue }
|
// object { Grande_Roue }
|
||||||
|
#include "incs/enseigne.inc"
|
||||||
|
object { Enseigne_Corail_texte }
|
||||||
camera {
|
camera {
|
||||||
location <5.5, 15, 20>
|
location <17.5, 3, 10>
|
||||||
right image_width/image_height*x
|
right image_width/image_height*x
|
||||||
look_at <0, 3, 0>
|
look_at <0, 0, 0>
|
||||||
angle ANGLE_CAM
|
angle ANGLE_CAM
|
||||||
}
|
}
|
||||||
|
|
||||||
object { Repere }
|
object { Repere scale 0.5 }
|
||||||
|
|
||||||
light_source { <90, 131, 190> color White }
|
light_source { <90, 131, 190> color White }
|
||||||
light_source { <90, 111, 250> color White }
|
light_source { <90, 111, 250> color White }
|
||||||
|
|||||||
@ -18,7 +18,7 @@
|
|||||||
/* generateur de nombres pseudo-aleatoires.
|
/* generateur de nombres pseudo-aleatoires.
|
||||||
mais comment le 'seeder' de fac,on differente a chaque run ? */
|
mais comment le 'seeder' de fac,on differente a chaque run ? */
|
||||||
|
|
||||||
#declare RND = seed(42);
|
#declare RND = seed(1664);
|
||||||
|
|
||||||
#declare FADE_DIST = 2.0;
|
#declare FADE_DIST = 2.0;
|
||||||
#declare FADE_POWA = 2.0;
|
#declare FADE_POWA = 2.0;
|
||||||
|
|||||||
@ -1,9 +1,10 @@
|
|||||||
/*
|
|
||||||
* see 'gare.inc' for usage
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "chars.inc"
|
#include "chars.inc"
|
||||||
|
|
||||||
|
/* ===========================================================*/
|
||||||
|
/*
|
||||||
|
* see 'gare.inc' for usage
|
||||||
|
*/
|
||||||
#declare Enseigne_Hello = object
|
#declare Enseigne_Hello = object
|
||||||
{
|
{
|
||||||
union
|
union
|
||||||
@ -22,5 +23,33 @@ union
|
|||||||
}
|
}
|
||||||
texture { PinkAlabaster scale 3 }
|
texture { PinkAlabaster scale 3 }
|
||||||
}
|
}
|
||||||
|
/* ===========================================================*/
|
||||||
|
#declare Enseigne_Corail_plaque = object
|
||||||
|
{
|
||||||
|
box { <-0.8, -0.01, -3.5>, <0.8, 0.01, 3.5> }
|
||||||
|
pigment { color Blue }
|
||||||
|
rotate z*90
|
||||||
|
}
|
||||||
|
/* ----------------------------------------------------------- */
|
||||||
|
#declare Enseigne_Corail_texte = object
|
||||||
|
{
|
||||||
|
text { ttf "data/tintin_talking.ttf" ,
|
||||||
|
"Bourtoulots Express", 0.06, 0.0
|
||||||
|
pigment{ White }
|
||||||
|
}
|
||||||
|
translate -3.6*x
|
||||||
|
rotate -90 * y
|
||||||
|
translate <0.03, -0.19, 0.00>
|
||||||
|
}
|
||||||
|
/* ----------------------------------------------------------- */
|
||||||
|
#declare Enseigne_Corail_texte = object
|
||||||
|
{
|
||||||
|
union {
|
||||||
|
object { Enseigne_Corail_plaque }
|
||||||
|
object { Enseigne_Corail_texte }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/* ===========================================================*/
|
||||||
|
/* ===========================================================*/
|
||||||
|
|
||||||
/* (c) Oulala */
|
/* (c) Oulala 2025 */
|
||||||
|
|||||||
@ -69,12 +69,12 @@ camera
|
|||||||
{
|
{
|
||||||
location <260, 38, 25>
|
location <260, 38, 25>
|
||||||
right image_width/image_height*x
|
right image_width/image_height*x
|
||||||
look_at <0, 3, -10>
|
look_at <0, 3, 12>
|
||||||
angle ANGLE_CAM
|
angle ANGLE_CAM
|
||||||
}
|
}
|
||||||
|
|
||||||
light_source { <150, 98, -150> color Orange }
|
light_source { <150, 98, -150> color Orange }
|
||||||
light_source { <170, 88, -170> color Yellow }
|
light_source { <170, 128, -170> color Yellow }
|
||||||
|
|
||||||
// light_source { <100, 100, 50> color White }
|
// light_source { <100, 100, 50> color White }
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user