HexaCone/survol.pov
2026-01-02 21:15:55 +01:00

35 lines
674 B
POVRay

/*
* H E X A C O N E - S U R V O L
* nouveau projet du Thu Dec 5 11:37:05 AM UTC 2024
*/
#version 3.7;
#include "globals.inc"
#include "all.inc"
object { Le_Decor }
// =======================================================
#declare Debut = <-3, 89, 188> ;
#declare Fin = < 2, 91, -15> ;
#declare Pos = sqrt(NormClock+0.02);
#declare PosCam = Interpolate(Debut, Fin, Pos);
#declare LatX = 0.414 * sin(NormClock*6.1);
#declare LatZ = -9 + (NormClock+11);
#declare LatCam = PosCam + <LatX, 1, LatZ>;
//
object { Repere scale 2 translate LatCam }
camera {
location PosCam
look_at 0
right <image_width/image_height, 0, 0>
angle 80
}