HexaCone/survol.pov

40 lines
833 B
POVRay
Raw Normal View History

2025-02-02 03:31:21 +11:00
/*
* 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 "contexte.inc"
#include "elements.inc"
#include "hexabenz.inc"
// =======================================================
2025-02-04 11:06:18 +11:00
#declare A = <-SzSol, 16, -8>;
2025-02-10 06:44:05 +11:00
#declare B = <SzSol+4, 18, -1>;
2025-02-04 11:06:18 +11:00
#declare P = Interpolate(A, B, NormClock);
object { HexaCone () rotate y*((6*NormClock)+80) translate P }
2025-02-02 03:31:21 +11:00
object { Le_Decor }
2025-02-10 06:44:05 +11:00
// object { Repere translate y*2 }
2025-02-02 03:31:21 +11:00
// =======================================================
#declare Debut = <-3, 42, 47> ;
#declare Fin = < 2, 45, 7> ;
#declare Pos = Cos_01(NormClock);
#declare PosCam = Interpolate(Debut, Fin, Pos);
2025-02-04 11:06:18 +11:00
#declare LatCam = PosCam + <-1, -20, -(NormClock+9)>;
2025-02-02 03:31:21 +11:00
camera {
location PosCam
look_at LatCam
2025-02-10 06:44:05 +11:00
angle 53
2025-02-02 03:31:21 +11:00
}