2021-03-08 06:58:18 +11:00
|
|
|
/*
|
|
|
|
*
|
2024-12-30 14:41:51 +11:00
|
|
|
* LOCO.POV
|
2021-03-08 06:58:18 +11:00
|
|
|
*/
|
|
|
|
|
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 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/rails.inc"
|
|
|
|
#include "incs/train.inc"
|
|
|
|
#include "incs/locomotive.inc"
|
2024-12-30 14:41:51 +11:00
|
|
|
#include "incs/electric.inc"
|
2021-03-08 06:58:18 +11:00
|
|
|
|
|
|
|
union {
|
|
|
|
object { Un_Rail_Droit }
|
|
|
|
object { Un_Rail_Droit translate z*-100 }
|
2024-12-30 14:41:51 +11:00
|
|
|
object { Locomotive_Vapeur translate <0, 2, 17.8> }
|
2021-03-08 06:58:18 +11:00
|
|
|
rotate y*5
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-12-30 14:41:51 +11:00
|
|
|
#if (0)
|
2021-03-08 06:58:18 +11:00
|
|
|
union {
|
|
|
|
object { Un_Rail_Droit }
|
|
|
|
object { Un_Rail_Droit translate z*-100 }
|
2024-12-30 14:41:51 +11:00
|
|
|
object { Locomotive_Electric translate y*2 }
|
2021-03-08 06:58:18 +11:00
|
|
|
translate x*42
|
|
|
|
}
|
2024-12-30 14:41:51 +11:00
|
|
|
#end
|
2021-03-08 06:58:18 +11:00
|
|
|
|
|
|
|
/*------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
camera {
|
2021-03-16 03:29:35 +11:00
|
|
|
location <-72, 17.5, 32>
|
2021-03-12 09:33:35 +11:00
|
|
|
right image_width/image_height*x
|
2021-03-08 06:58:18 +11:00
|
|
|
look_at <5, 9.7, 18>
|
2021-03-15 13:08:13 +11:00
|
|
|
angle ANGLE_CAM
|
2021-03-08 06:58:18 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
light_source { <150, 118, -150> color Gray70 }
|
|
|
|
light_source { <-170, 298, -250> color Gray70 }
|
|
|
|
|
|
|
|
/*------------------------------------------------------------------*/
|