HexaCone/carto.pov
2026-01-02 21:15:55 +01:00

36 lines
764 B
POVRay

/*
* H E X A C O N E
* nouveau projet Thu Dec 5 11:37:05 AM UTC 2024
*
* cartographie de l'hexamonde
*/
#version 3.7;
#include "globals.inc"
#include "all.inc"
// ---------------------------------------------------------
// ---------------------------------------------------------
// dessiner une grille
#for (Foo, -140, 140, 10)
#local H = 0.17;
cylinder { <-150, H, Foo>, <150, H, Foo>, 0.06 }
cylinder { <Foo, H, -150>, <Foo, H, 150>, 0.06 }
#end
// ---------------------------------------------------------
object { Repere scale 10 translate y*10 }
object { Le_Decor }
camera {
location <45, 179+(76*NormClock), 18-(17*NormClock)>
look_at <0, 1.18, 0.17 + (2.4*NormClock)>
right <image_width/image_height, 0, 0>
angle 50
}