HexaCone/survol.pov
2026-01-04 23:01:37 +01:00

36 lines
713 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"
#declare NO_DYNAMIC = 0;
#include "all.inc"
object { Le_Decor }
// =======================================================
#declare Debut = <-3, 89, 188> ;
#declare Fin = < 2, 91, -25> ;
#declare Pos = sqrt(NormClock);
#declare PosCam = Interpolate(Debut, Fin, Pos);
#declare LatX = 0.414 * sin(NormClock*6.1);
#declare LatZ = -(150 + (7*NormClock));
#declare LatCam = PosCam + <LatX, -95, LatZ>;
// object { Repere scale 40 translate LatCam + y*5 }
camera {
location PosCam
look_at LatCam
right <image_width/image_height, 0, 0>
angle 72
}