40 lines
835 B
POVRay
40 lines
835 B
POVRay
/*
|
|
* H E X A C O N E - P A N O R A M I C
|
|
* nouveau projet du Thu Dec 5 11:37:05 AM UTC 2024
|
|
*/
|
|
|
|
#version 3.7;
|
|
|
|
#include "globals.inc"
|
|
|
|
#include "contexte.inc"
|
|
#include "gadgets.inc"
|
|
#include "hexacone.inc"
|
|
#include "hexabenz.inc"
|
|
#include "hexawood.inc"
|
|
#include "trident.inc"
|
|
|
|
// =======================================================
|
|
object { Le_Decor }
|
|
|
|
#debug "ACTION !!!\n"
|
|
#include "dynamic.inc"
|
|
|
|
// =======================================================
|
|
|
|
#declare CK = 2.79 * Cos_01(NormClock);
|
|
|
|
#declare CamY = 7 + (4*Cos_01(NormClock));
|
|
|
|
#declare LatX = 20 * cos(CK*1.08);
|
|
#declare LatY = 3.0 - sqrt(NormClock);
|
|
#declare LatZ = 20 * sin(CK);
|
|
// object { Repere scale 2 translate <LatX, LatY, LatZ> }
|
|
|
|
camera {
|
|
// orthographic
|
|
location <0, CamY, 0>
|
|
look_at <LatX, LatY, LatZ>
|
|
angle 75
|
|
}
|