HexaCone/scene.pov

40 lines
742 B
POVRay
Raw Normal View History

2024-12-16 03:53:42 +11:00
/*
* nouveau projet Thu Dec 5 11:37:05 AM UTC 2024
*/
#version 3.7;
global_settings {
assumed_gamma 1.0
2024-12-18 00:36:26 +11:00
ambient_light rgb <0.02, 0.02, 0.02>
2024-12-16 23:58:04 +11:00
max_trace_level 10
2024-12-16 03:53:42 +11:00
}
#include "colors.inc"
#include "textures.inc"
#include "elements.inc"
#include "contexte.inc"
2024-12-18 00:36:26 +11:00
object { HexaCone rotate y*17 translate y*1.11 }
2024-12-16 03:53:42 +11:00
#declare CK = 56 + (clock * 2);
2024-12-18 00:36:26 +11:00
#declare Dcam = 1.97;
2024-12-16 03:53:42 +11:00
#declare CamX = Dcam * sin(radians(CK));
2024-12-16 08:24:38 +11:00
#declare CamZ = Dcam * 1.20 * cos(radians(CK));
2024-12-18 00:36:26 +11:00
#declare CamZ = CamZ - 0.11;
2024-12-16 03:53:42 +11:00
2024-12-18 00:36:26 +11:00
#declare Lat = <0.03, 1.08, 0.17>;
2024-12-16 03:53:42 +11:00
camera {
2024-12-16 23:58:04 +11:00
location <CamX, 1.23, CamZ>
2024-12-16 03:53:42 +11:00
look_at Lat
focal_point Lat
2024-12-16 23:58:04 +11:00
aperture 0.056
2024-12-16 03:53:42 +11:00
blur_samples 33
angle 70
}
2024-12-16 23:58:04 +11:00
/**
light_source { <CamX*1.3, 1.35, 1.2+(CamZ*1.3)>,
2024-12-16 03:53:42 +11:00
rgb <0.47, 0.65, 0.49> }
2024-12-16 23:58:04 +11:00
**/