39 lines
845 B
POVRay
39 lines
845 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"
|
|
|
|
#declare NO_DYNAMIC = 0;
|
|
#include "all.inc"
|
|
|
|
// ---------------------------------------------------------
|
|
object { Repere scale 20 translate y*20 }
|
|
// ---------------------------------------------------------
|
|
// dessiner une grille
|
|
union {
|
|
#for (Foo, -140, 140, 10)
|
|
#local H = 0.07;
|
|
#local Ra = 0.05;
|
|
cylinder { <-150, H, Foo>, <150, H, Foo>, Ra }
|
|
cylinder { <Foo, H, -150>, <Foo, H, 150>, Ra }
|
|
#end
|
|
pigment { color Black }
|
|
}
|
|
|
|
// ---------------------------------------------------------
|
|
object { Le_Decor }
|
|
|
|
camera {
|
|
location <45, 149+(99*NormClock), 18-(12*NormClock)>
|
|
look_at <0, 1.18, 0.17 + (2.4*NormClock)>
|
|
right <image_width/image_height, 0, 0>
|
|
angle 50
|
|
}
|
|
|