35 lines
620 B
POVRay
35 lines
620 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 "colors.inc"
|
|
#include "metals.inc"
|
|
#include "textures.inc"
|
|
|
|
#declare NormClock = clock / 360.0;
|
|
#include "contexte.inc"
|
|
#include "elements.inc"
|
|
|
|
// ---------------------------------------
|
|
|
|
#declare PosX = 0;
|
|
#declare PosY = 1.20 + (NormClock*0.20);
|
|
#declare PosZ = (NormClock-0.5) * 8.44;
|
|
|
|
object { HexaCone translate <PosX, PosY, PosZ> }
|
|
|
|
camera {
|
|
location <-1.50, 1.23, 9>
|
|
look_at <PosX, 1.50, PosZ>
|
|
// focal_point <0, 1, 0>
|
|
// aperture 0.046
|
|
// blur_samples 30
|
|
angle 36
|
|
}
|
|
|