first complete run

This commit is contained in:
le vieux
2021-03-08 14:35:37 +01:00
parent 7dc34a8b38
commit 8441d5ebe9
11 changed files with 284 additions and 48 deletions

55
citerne.pov Normal file
View File

@@ -0,0 +1,55 @@
/*
*/
#version 3.7;
#include "colors.inc"
#include "metals.inc"
global_settings {
ambient_light Gray15
assumed_gamma 1.0 /* pour povray 3.7 */
}
/*------------------------------------------------------------------*/
#include "incs/train.inc"
#include "incs/rails.inc"
#include "incs/citerne.inc"
#include "incs/decor.inc"
object { Un_Rail_Droit }
object { Wagon_Citerne translate y*2 }
/*------------------------------------------------------------------*/
#include "plancher.inc"
object { Plancher_0 scale <.5, 1, .5> }
sky_sphere {
pigment
{
gradient x
color_map
{
[0 color Green]
[0.33 color Gray30 ]
[1 color Blue]
}
}
scale 0.5
translate -1
}
camera
{
location <36, 13, -11>
look_at <0, 5.8, 0>
angle 61
}
light_source { <290, 131, -190> color White }
light_source { <290, 111, -250> color White }
/*------------------------------------------------------------------*/