From a4025b907ff1e6223bd2a54fbee0a8bd86133879 Mon Sep 17 00:00:00 2001 From: Tonton Th Date: Mon, 26 Jan 2026 22:23:49 +0100 Subject: [PATCH] add a new sequence: "around" --- around.pov | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 around.pov diff --git a/around.pov b/around.pov new file mode 100644 index 0000000..63aa4b2 --- /dev/null +++ b/around.pov @@ -0,0 +1,31 @@ +/* + * H E X A C O N E - A R O U N D + * nouveau projet du Thu Dec 5 11:37:05 AM UTC 2024 + * + * scene imaginée le 26 janvier 2026 + */ + +#version 3.7; + +#include "globals.inc" + +#declare NO_DYNAMIC = 0; +#include "all.inc" + +object { Le_Decor } + +// ======================================================= + +#declare R_around = 125; +#declare CK = 1.9 + (3.141592654 * NormClock); + +#declare CamX = R_around * cos(CK); +#declare CamY = 12.777; +#declare CamZ = R_around * sin(CK); + +camera { + location + look_at <0, 2, 0> + right + angle 44 + }