33 lines
711 B
POVRay
33 lines
711 B
POVRay
/*
|
|
un fichier de test.
|
|
*/
|
|
|
|
#version 3.7;
|
|
global_settings { assumed_gamma 1.0 }
|
|
|
|
#include "colors.inc"
|
|
#include "metals.inc"
|
|
|
|
#include "incs/train.inc"
|
|
#include "incs/rails.inc"
|
|
#include "incs/benne.inc"
|
|
#include "incs/grue.inc"
|
|
// #include "decor.inc"
|
|
|
|
object { Boogie }
|
|
|
|
camera {
|
|
location <15.5, 8, 9>
|
|
look_at <0, 0, 0>
|
|
angle 42
|
|
}
|
|
|
|
cylinder { <-100, 0, 0>, <100, 0, 0>, 0.1 pigment { color Red } }
|
|
cylinder { <0, -100, 0>, <0, 100, 0>, 0.1 pigment { color Green } }
|
|
cylinder { <0, 0, -100>, <0, 0, 100>, 0.1 pigment { color Blue } }
|
|
|
|
light_source { <90, 131, 190> color White }
|
|
light_source { <90, 111, 250> color White }
|
|
|
|
/*------------------------------------------------------------------*/
|