PovJouets/benne.pov

59 lines
1.0 KiB
POVRay

/*
un fichier de test.
poser le wagon benne sur les rails.
*/
#version 3.7;
global_settings { assumed_gamma 1.0 }
#include "colors.inc"
#include "metals.inc"
/*------------------------------------------------------------------*/
#include "incs/train.inc"
#include "incs/rails.inc"
#include "incs/benne.inc"
#include "incs/decor.inc"
object { Balise_0 translate x*95 }
object { Un_Rail_Droit }
object { Wagon_Benne translate y*2 }
/*------------------------------------------------------------------*/
#include "plancher.inc"
object { Plancher_0 scale <.5, 1, .5> }
sky_sphere {
pigment
{
gradient y
color_map
{
[0 color Green]
[0.33 color Gray50 ]
[1 color Blue]
}
}
scale 0.33333333
rotate <10, 0, 10>
translate -1
}
camera
{
location <35.5, 13, 20>
right image_width/image_height*x
look_at <0, 6, 0>
angle 51
}
light_source { <90, 131, 190> color White }
light_source { <90, 111, 250> color White }
/*------------------------------------------------------------------*/