42 lines
836 B
POVRay
42 lines
836 B
POVRay
/*
|
|
* H E X A C O N E - E S S A I
|
|
* 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 }
|
|
|
|
// =======================================================
|
|
|
|
#declare R_circ = R_circular + 2;
|
|
#declare CK = NormClock * 2 * 3.141592654;
|
|
|
|
#declare CamX = R_circ * cos(CK);
|
|
#declare CamY = 3.08;
|
|
#declare CamZ = R_circ * sin(CK);
|
|
|
|
#declare LatX = R_circ * 0.92 * cos(CK + 0.09);
|
|
#declare LatY = 3;
|
|
#declare LatZ = R_circ * 0.91 * sin(CK + 0.09);
|
|
|
|
camera {
|
|
// orthographic
|
|
location <CamX, CamY, CamZ>
|
|
look_at <LatX, LatY, LatZ>
|
|
angle 66
|
|
}
|
|
|