home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 26 / CD_ASCQ_26_1295.iso / voxrom / textes / repwin08 / annexes / cybermad / essai1.pov < prev   
Text File  |  1995-10-01  |  574b  |  31 lines

  1.  
  2. /*  Fichier : Scène pour POV 2
  3.     Nom     : ESSAI1.POV (une simple sphère rouge)
  4.     Auteur  : J-Paul "CyberMad" MARUEJOULS
  5.               Pour Le Reporter n° 8
  6.     Droits  : Versé dans le Domaine Public ;-)
  7. */
  8.  
  9. #include "colors.inc"
  10.  
  11. // La Caméra
  12.  
  13. camera {              
  14.    location <0,0,-5>  
  15.    look_at <0,0,1>    
  16. }                     
  17.  
  18. // La Source lumineuse
  19.  
  20. light_source {
  21.    <10,10,-10>        
  22.    color White        
  23. }                     
  24.  
  25. // L'objet
  26.  
  27. sphere {           
  28.    <0,0,0>,1       
  29.    pigment { Red } 
  30. }                  
  31.