56 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			POVRay
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			POVRay
		
	
	
	
	
	
| /*
 | |
|  *
 | |
|  *
 | |
|  */
 | |
| 
 | |
| #version 3.7;
 | |
| #include	"contexte.inc"
 | |
| 
 | |
| global_settings {
 | |
|         assumed_gamma   1.0                     /* pour povray 3.7 */
 | |
|         }
 | |
| 
 | |
| #include	"colors.inc"
 | |
| #include	"metals.inc"
 | |
| 
 | |
| /*------------------------------------------------------------------*/
 | |
| 
 | |
| #include	"monde.inc"
 | |
| 
 | |
| #include	"incs/rails.inc"
 | |
| #include	"incs/train.inc"
 | |
| #include	"incs/locomotive.inc"
 | |
| // #include	"electric.inc"
 | |
| 
 | |
| union {
 | |
| 	object { Un_Rail_Droit }
 | |
| 	object { Un_Rail_Droit translate z*-100 }
 | |
| 	object { Locomotive_Vapeur translate <0, 2, 15> }
 | |
| 	rotate y*5
 | |
| 	}
 | |
| 
 | |
| 
 | |
| union {
 | |
| 	object { Un_Rail_Droit }
 | |
| 	object { Un_Rail_Droit translate z*-100 }
 | |
| 	// object { Locomotive_Electric translate y*2 }
 | |
| 	translate x*42
 | |
| 	}
 | |
| 
 | |
| 
 | |
| /*------------------------------------------------------------------*/
 | |
| 
 | |
| camera {
 | |
| 	location	<-42, 17.5, 32>
 | |
| 	right		image_width/image_height*x
 | |
| 	look_at		<5, 9.7, 18>
 | |
| 	angle		ANGLE_CAM
 | |
| 	}
 | |
| 
 | |
| light_source { <150, 118, -150> color Gray70 }
 | |
| light_source { <-170, 298, -250> color Gray70 }
 | |
| 
 | |
| light_source { <-700, 200, 150> color White }
 | |
| 
 | |
| /*------------------------------------------------------------------*/
 | 
