PovJouets/wagons.pov

53 lines
1.2 KiB
POVRay

/*
* tous les petits jouets ensembles
* --------------------------------
*
* les dimensions sont en centimetres, et on regardera
* les choses a une hauteur de 40 cm.
*
* pour plus de details: oulala@chez.com
*
*/
#version 3.7;
global_settings { assumed_gamma 1.0 }
#include "colors.inc"
#include "metals.inc"
#include "textures.inc"
/*------------------------------------------------------------------*/
#include "plancher.inc"
object { Plancher_0 scale <.5, 1, .5> }
/*------------------------------------------------------------------*/
#include "incs/train.inc"
#include "incs/citerne.inc"
#include "incs/ridelles.inc"
object { Wagon_Ridelles rotate y*-10 translate x*-14 }
object { Wagon_Citerne rotate y*50 translate x*16 }
#include "incs/poteaux.inc"
object { Poteau_0 }
object { Poteau_1 translate -z*9.34567 }
/*------------------------------------------------------------------*/
camera
{
location <12, 20, -50>
right image_width/image_height*x
look_at <0, 0, 0>
angle 42
}
light_source { <-50, 120, -330> color White }
light_source { <190, 498, -250> color White }
light_source { <160, 99, -250> color Yellow }
/*------------------------------------------------------------------*/