43 lines
803 B
POVRay
43 lines
803 B
POVRay
/*
|
|
* nouveau projet Thu Dec 5 11:37:05 AM UTC 2024
|
|
*/
|
|
|
|
#version 3.7;
|
|
|
|
global_settings {
|
|
assumed_gamma 1.0
|
|
ambient_light rgb <0.02, 0.02, 0.02>
|
|
max_trace_level 10
|
|
}
|
|
|
|
#include "colors.inc"
|
|
#include "metals.inc"
|
|
#include "textures.inc"
|
|
|
|
#declare NormClock = clock / 180.0;
|
|
#include "contexte.inc"
|
|
#include "elements.inc"
|
|
|
|
object { HexaCone rotate y*17 translate y*1.11 }
|
|
|
|
#declare CK = 56 + (clock * 2);
|
|
#declare Dcam = 2.04;
|
|
#declare CamX = Dcam * sin(radians(CK));
|
|
#declare CamZ = Dcam * 1.20 * cos(radians(CK));
|
|
#declare CamZ = CamZ - 0.11;
|
|
|
|
#declare Lat = <0.03, 1.08, 0.17>;
|
|
camera {
|
|
location <CamX, 1.23, CamZ>
|
|
look_at Lat
|
|
focal_point Lat
|
|
aperture 0.052
|
|
blur_samples 33
|
|
angle 70
|
|
}
|
|
|
|
/**
|
|
light_source { <CamX*1.3, 1.35, 1.2+(CamZ*1.3)>,
|
|
rgb <0.47, 0.65, 0.49> }
|
|
**/
|