58 lines
1.0 KiB
POVRay
58 lines
1.0 KiB
POVRay
/*
|
|
*
|
|
* pour plus de details: oulala@chez.com
|
|
*
|
|
*/
|
|
|
|
#version 3.7;
|
|
|
|
#include "colors.inc"
|
|
#include "metals.inc"
|
|
|
|
global_settings {
|
|
ambient_light Gray15
|
|
assumed_gamma 1.0 /* pour povray 3.7 */
|
|
}
|
|
|
|
/*------------------------------------------------------------------*/
|
|
|
|
background { color Gray40 }
|
|
|
|
plane {
|
|
y, 0
|
|
pigment
|
|
{
|
|
hexagon Gray55, rgb<0.55, 0.65, 0.30>, Gray75
|
|
scale 20
|
|
}
|
|
finish { reflection 0.42 }
|
|
}
|
|
|
|
#include "incs/rails.inc"
|
|
#include "incs/train.inc"
|
|
#include "incs/electric.inc"
|
|
|
|
union
|
|
{
|
|
object { Un_Rail_Droit }
|
|
object { Locomotive_Electric translate y*2 }
|
|
}
|
|
|
|
/*------------------------------------------------------------------*/
|
|
|
|
camera
|
|
{
|
|
spherical
|
|
right x*image_width/image_height
|
|
right x*image_width/image_height
|
|
location <11, 11.1, -54>
|
|
look_at <0, 8, -10>
|
|
angle 38
|
|
}
|
|
|
|
light_source { <7, 8, -54> color Gray80 }
|
|
light_source { <150, 130, -150> color Green }
|
|
light_source { <270, 130, 250> color Gray50 }
|
|
|
|
/*------------------------------------------------------------------*/
|