PovJouets/grue.pov

46 lines
838 B
POVRay
Raw Normal View History

2021-03-08 14:35:37 +01:00
/*
2021-03-15 17:29:35 +01:00
* un gros chantier, vraiment gros (cTMr)
2021-03-08 14:35:37 +01:00
*/
#version 3.7;
2021-03-15 03:08:13 +01:00
#include "contexte.inc"
2021-03-08 14:35:37 +01:00
#include "colors.inc"
#include "metals.inc"
#include "textures.inc"
/*------------------------------------------------------------------*/
2021-03-15 17:29:35 +01:00
#include "monde.inc"
2021-03-08 14:35:37 +01: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-11 23:33:35 +01:00
right image_width/image_height*x
2021-03-08 14:35:37 +01:00
look_at <0, 6, 3>
angle 42
}
light_source { <350, 425, -500> color Green }
light_source { <70, 38, 40> color White }
/*------------------------------------------------------------------*/