PovJouets/parking.pov

83 lines
1.5 KiB
POVRay
Raw Normal View History

2021-03-07 20:58:18 +01:00
/*
2021-03-15 17:29:35 +01:00
* Les jouets de tTh - 2021
2021-03-07 20:58:18 +01:00
* pour plus de details: oulala@chez.com
*
*/
2021-03-08 05:24:35 +01:00
#version 3.7;
2021-03-15 03:08:13 +01:00
#include "contexte.inc"
2021-03-08 05:24:35 +01:00
2021-03-07 20:58:18 +01:00
#include "colors.inc"
#include "metals.inc"
/*------------------------------------------------------------------*/
2021-03-15 03:08:13 +01:00
#include "monde.inc"
2021-03-07 20:58:18 +01:00
#include "incs/train.inc"
#include "incs/locomotive.inc"
#include "incs/electric.inc"
#include "incs/corail.inc"
#include "incs/citerne.inc"
#include "incs/ridelles.inc"
#include "incs/rails.inc"
#include "incs/benne.inc"
#include "incs/grue.inc"
union {
object { Wagon_Benne translate y*2 }
object { Un_Rail_Droit }
translate x*-56
}
union {
object { Locomotive_Vapeur translate y*2 }
object { Un_Rail_Droit }
translate x*-32
}
union {
object { Wagon_Corail translate y*2 }
object { Un_Rail_Droit }
translate x*-9
}
union {
object { Wagon_Ridelles translate y*2 }
object { Un_Rail_Droit }
translate x*10
}
union {
object { Wagon_Citerne translate y*2 }
object { Un_Rail_Droit }
translate x*35
}
union {
object { Locomotive_Electric translate y*2 }
object { Un_Rail_Droit }
translate x*57
}
union {
object { Wagon_Grue translate y*2 }
object { Un_Rail_Droit }
translate x*79
}
/*------------------------------------------------------------------*/
camera
{
2021-03-13 18:56:21 +01:00
location <44, 4, -110>
2021-03-11 23:33:35 +01:00
right image_width/image_height*x
2021-03-13 18:56:21 +01:00
look_at <10, 1.9, 0>
2021-03-15 03:08:13 +01:00
angle ANGLE_CAM
2021-03-07 20:58:18 +01:00
}
light_source { <150, 78, -250> color Gray20 }
light_source { <140, 140, -250> color Gray20 }
light_source { <-140, 210, -250> color Blue }
/*------------------------------------------------------------------*/