2021-03-08 06:58:18 +11:00
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
* pour plus de details: oulala@chez.com
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
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-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/rails.inc"
|
|
|
|
#include "incs/corail.inc"
|
|
|
|
#include "incs/poteaux.inc"
|
|
|
|
|
|
|
|
object
|
|
|
|
{
|
|
|
|
union
|
|
|
|
{
|
|
|
|
object { Wagon_Corail translate y*2 }
|
|
|
|
object { Un_Rail_Droit }
|
|
|
|
object { Un_Rail_Droit translate z*100 }
|
|
|
|
object { Un_Rail_Droit translate z*200 }
|
|
|
|
object { Un_Rail_Droit translate z*300 }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#declare foo = -300;
|
|
|
|
#while (foo < 400)
|
|
|
|
object { Poteau_1 translate <20, 0, foo> }
|
|
|
|
#declare foo = foo +42;
|
|
|
|
#end
|
|
|
|
|
|
|
|
/*------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
camera
|
|
|
|
{
|
2021-03-16 10:48:07 +11:00
|
|
|
location <38, 10, -45>
|
2021-03-12 09:33:35 +11:00
|
|
|
right image_width/image_height*x
|
2021-03-16 10:48:07 +11:00
|
|
|
look_at <0, 7, 0>
|
2021-03-15 13:08:13 +11:00
|
|
|
angle ANGLE_CAM
|
2021-03-08 06:58:18 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
light_source { <550, 725, -900> color Gray60 }
|
|
|
|
light_source { <600, 700, -850> color Gray50 }
|
|
|
|
|
|
|
|
|
|
|
|
/*------------------------------------------------------------------*/
|