34 lines
		
	
	
		
			622 B
		
	
	
	
		
			POVRay
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			622 B
		
	
	
	
		
			POVRay
		
	
	
	
	
	
/*
 | 
						|
 *		H E X A C O N E
 | 
						|
 *   nouveau projet Thu Dec  5 11:37:05 AM UTC 2024
 | 
						|
 */
 | 
						|
 | 
						|
#version 3.7;
 | 
						|
 | 
						|
#include  "globals.inc"
 | 
						|
 | 
						|
#include  "contexte.inc"
 | 
						|
#include  "elements.inc"
 | 
						|
#include  "hexabenz.inc"
 | 
						|
#include  "hexawood.inc"
 | 
						|
#include  "trident.inc"
 | 
						|
 | 
						|
#include  "dynamic.inc"
 | 
						|
 | 
						|
// ---------------------------------------------------------
 | 
						|
#for (Foo, -150, 150, 10)
 | 
						|
  cylinder { <-150, 0, Foo>, <150, 0, Foo>, 0.12 }
 | 
						|
  cylinder { <Foo, 0, -150>, <Foo, 0, 150>, 0.12 }
 | 
						|
#end
 | 
						|
 | 
						|
// ---------------------------------------------------------
 | 
						|
 | 
						|
object { Le_Decor }
 | 
						|
 | 
						|
camera	{
 | 
						|
	location	<45, 126, 18>
 | 
						|
	look_at		<0, 1.18, 0.17>
 | 
						|
	angle		50
 | 
						|
	}
 | 
						|
 |