39 lines
713 B
POVRay
39 lines
713 B
POVRay
/*
|
|
* nouveau projet Thu Dec 5 11:37:05 AM UTC 2024
|
|
*/
|
|
|
|
#version 3.7;
|
|
|
|
global_settings {
|
|
assumed_gamma 1.0
|
|
ambient_light 0
|
|
max_trace_level 10
|
|
}
|
|
|
|
#declare R2 = seed(clock);
|
|
#declare foo = rand(R2);
|
|
|
|
#include "colors.inc"
|
|
#include "metals.inc"
|
|
#include "textures.inc"
|
|
|
|
#declare NormClock = clock / 360.0;
|
|
#include "contexte.inc"
|
|
#include "elements.inc"
|
|
|
|
// =======================================================
|
|
|
|
|
|
// =======================================================
|
|
|
|
object { Reacteur translate <0, 1, 0> }
|
|
|
|
light_source { <-6, 7, -4>, rgb <0.81, 0.65, 0.40> }
|
|
light_source { <-6, 7, 4>, rgb <0.31, 0.65, 0.80> }
|
|
|
|
camera {
|
|
location <-0.91, 1.01, 0.20>
|
|
look_at <0, 1.0, 0>
|
|
angle 32
|
|
}
|