36 lines
645 B
POVRay
36 lines
645 B
POVRay
/*
|
|
* H E X A C O N E
|
|
* nouveau projet Thu Dec 5 11:37:05 AM UTC 2024
|
|
*/
|
|
|
|
#version 3.7;
|
|
|
|
#include "globals.inc"
|
|
|
|
#include "contexte.inc"
|
|
#include "elements.inc"
|
|
#include "hexabenz.inc"
|
|
#include "hexawood.inc"
|
|
|
|
#include "dynamic.inc"
|
|
|
|
// ---------------------------------------------------------
|
|
|
|
object { Le_Decor }
|
|
|
|
#declare CK = 96 + (clock * 0.36);
|
|
#declare Dcam = 3.55;
|
|
#declare CamX = Dcam * sin(radians(CK));
|
|
#declare CamZ = Dcam * 1.20 * cos(radians(CK));
|
|
|
|
#declare Lat = <0.03, 1.18, 0.17>;
|
|
camera {
|
|
location <CamX, 1.23, CamZ>
|
|
look_at Lat
|
|
// focal_point Lat
|
|
// aperture 0.046
|
|
// blur_samples 30
|
|
angle 70
|
|
}
|
|
|