2021-03-08 06:58:18 +11:00
|
|
|
/*
|
2021-03-16 10:48:07 +11:00
|
|
|
essai.pov -- un fichier de test.
|
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 15:24:35 +11:00
|
|
|
|
2021-03-08 06:58:18 +11:00
|
|
|
#include "metals.inc"
|
|
|
|
|
|
|
|
#include "incs/train.inc"
|
|
|
|
#include "incs/rails.inc"
|
|
|
|
#include "incs/benne.inc"
|
|
|
|
#include "incs/grue.inc"
|
|
|
|
|
2021-03-16 10:48:07 +11:00
|
|
|
// object { Boogie }
|
|
|
|
object { Grande_Roue }
|
2021-03-08 06:58:18 +11:00
|
|
|
|
|
|
|
camera {
|
2021-03-16 10:48:07 +11:00
|
|
|
location <5.5, 15, 20>
|
2021-03-12 09:33:35 +11:00
|
|
|
right image_width/image_height*x
|
2021-03-16 10:48:07 +11:00
|
|
|
look_at <0, 3, 0>
|
2021-03-15 13:08:13 +11:00
|
|
|
angle ANGLE_CAM
|
2021-03-08 06:58:18 +11:00
|
|
|
}
|
|
|
|
|
2021-03-16 10:48:07 +11:00
|
|
|
object { Repere }
|
2021-03-08 06:58:18 +11:00
|
|
|
|
|
|
|
light_source { <90, 131, 190> color White }
|
|
|
|
light_source { <90, 111, 250> color White }
|
|
|
|
|
|
|
|
/*------------------------------------------------------------------*/
|