2021-03-09 00:35:37 +11:00
|
|
|
|
|
|
|
/*
|
2021-03-16 03:29:35 +11:00
|
|
|
* un gros chantier, vraiment gros (cTMr)
|
2021-03-09 00:35:37 +11:00
|
|
|
*/
|
|
|
|
|
|
|
|
#version 3.7;
|
2021-03-15 13:08:13 +11:00
|
|
|
#include "contexte.inc"
|
2021-03-09 00:35:37 +11:00
|
|
|
|
|
|
|
/*------------------------------------------------------------------*/
|
|
|
|
|
2021-03-16 03:29:35 +11:00
|
|
|
#include "monde.inc"
|
2021-03-09 00:35:37 +11:00
|
|
|
|
|
|
|
#include "incs/train.inc"
|
|
|
|
#include "incs/rails.inc"
|
|
|
|
#include "incs/grue.inc"
|
|
|
|
|
|
|
|
object
|
|
|
|
{
|
|
|
|
union
|
|
|
|
{
|
|
|
|
object { Wagon_Grue translate y*2 }
|
|
|
|
object { Un_Rail_Droit }
|
|
|
|
object { Un_Rail_Droit translate z*100 }
|
|
|
|
object { Un_Rail_Droit translate z*200 }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
camera
|
|
|
|
{
|
|
|
|
location <42, 12, 25>
|
2021-03-12 09:33:35 +11:00
|
|
|
right image_width/image_height*x
|
2021-03-09 00:35:37 +11:00
|
|
|
look_at <0, 6, 3>
|
|
|
|
angle 42
|
|
|
|
}
|
|
|
|
|
|
|
|
light_source { <350, 425, -500> color Green }
|
|
|
|
light_source { <70, 38, 40> color White }
|
|
|
|
|
|
|
|
/*------------------------------------------------------------------*/
|