50 lines
1.0 KiB
POVRay
50 lines
1.0 KiB
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 "contexte.inc"
|
|
#include "hexacone.inc"
|
|
#include "hexabenz.inc"
|
|
#include "hexawood.inc"
|
|
#include "trident.inc"
|
|
|
|
#include "dynamic.inc"
|
|
|
|
// XXX
|
|
#include "xperiment.inc"
|
|
// XXX
|
|
|
|
object { Les_Arches rotate y*59 translate <-32, 0, 20> }
|
|
|
|
object { Les_Arches rotate y*159 translate <-34, 0, -26> }
|
|
|
|
object { Les_Cahutes () translate <32, 0, -9> }
|
|
object { Les_Cahutes () rotate y*7 translate <37, 0, -22> }
|
|
|
|
// ---------------------------------------------------------
|
|
// dessiner une grille
|
|
|
|
#for (Foo, -150, 150, 10)
|
|
cylinder { <-150, 0, Foo>, <150, 0, Foo>, 0.10 }
|
|
cylinder { <Foo, 0, -150>, <Foo, 0, 150>, 0.10 }
|
|
#end
|
|
|
|
// ---------------------------------------------------------
|
|
|
|
object { Repere scale 10 translate y*7 }
|
|
object { Le_Decor }
|
|
|
|
camera {
|
|
location <45, 179+(42*NormClock), 18-(21*NormClock)>
|
|
look_at <0, 1.18, 0.17 + (2.9*NormClock)>
|
|
angle 50
|
|
}
|
|
|