2021-03-08 06:58:18 +11:00
|
|
|
/*
|
2021-03-16 03:29:35 +11:00
|
|
|
* Les jouets de tTh - 2021
|
2021-03-08 06:58:18 +11:00
|
|
|
* pour plus de details: oulala@chez.com
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2021-03-08 15:24:35 +11:00
|
|
|
#version 3.7;
|
2021-03-15 13:08:13 +11:00
|
|
|
#include "contexte.inc"
|
2021-03-08 15:24:35 +11:00
|
|
|
|
2021-03-08 06:58:18 +11:00
|
|
|
/*------------------------------------------------------------------*/
|
|
|
|
|
2021-03-15 13:08:13 +11:00
|
|
|
#include "monde.inc"
|
2021-03-08 06:58:18 +11: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-14 04:56:21 +11:00
|
|
|
location <44, 4, -110>
|
2021-03-12 09:33:35 +11:00
|
|
|
right image_width/image_height*x
|
2021-03-14 04:56:21 +11:00
|
|
|
look_at <10, 1.9, 0>
|
2021-03-15 13:08:13 +11:00
|
|
|
angle ANGLE_CAM
|
2021-03-08 06:58:18 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
light_source { <150, 78, -250> color Gray20 }
|
|
|
|
light_source { <140, 140, -250> color Gray20 }
|
|
|
|
light_source { <-140, 210, -250> color Blue }
|
|
|
|
|
|
|
|
/*------------------------------------------------------------------*/
|