46 lines
1004 B
POVRay
46 lines
1004 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"
|
|
|
|
// =======================================================
|
|
// #include "dynamic.inc"
|
|
object { Le_Decor }
|
|
|
|
// =======================================================
|
|
|
|
#debug "ACTION !!!\n"
|
|
#include "dynamic.inc"
|
|
|
|
|
|
// ------------------------------------------------------ ##
|
|
// ------------------------------------------------------ ##
|
|
|
|
// =======================================================
|
|
|
|
#declare CamY = 7 + (3*Cos_01(NormClock));
|
|
|
|
|
|
#declare LatX = 20 * cos(NormClock*1.81);
|
|
#declare LatY = 3.8;
|
|
#declare LatZ = 20 * sin(NormClock*2.53);
|
|
object { Repere scale 2 translate <LatX, LatY, LatZ> }
|
|
|
|
camera {
|
|
// orthographic
|
|
location <0, CamY, 0>
|
|
look_at <LatX, LatY, LatZ>
|
|
angle 70
|
|
}
|