PovJouets/essai.pov

33 lines
717 B
POVRay
Raw Normal View History

2021-03-07 20:58:18 +01:00
/*
un fichier de test.
*/
2021-03-08 05:24:35 +01:00
#version 3.7;
2021-03-15 03:08:13 +01:00
#include "contexte.inc"
2021-03-08 05:24:35 +01:00
2021-03-07 20:58:18 +01:00
#include "colors.inc"
#include "metals.inc"
#include "incs/train.inc"
#include "incs/rails.inc"
#include "incs/benne.inc"
#include "incs/grue.inc"
object { Boogie }
camera {
2021-03-15 17:29:35 +01:00
location <24.5, 15, 22>
2021-03-11 23:33:35 +01:00
right image_width/image_height*x
2021-03-15 17:29:35 +01:00
look_at <0, 2, 0>
2021-03-15 03:08:13 +01:00
angle ANGLE_CAM
2021-03-07 20:58:18 +01:00
}
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 }
/*------------------------------------------------------------------*/