home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Raytrace & Morphing / SOS-RAYTRACE.ISO / programm / utility / windows / objrep / basic.dat next >
Encoding:
Text File  |  1994-02-21  |  791 b   |  36 lines

  1. //  -------------------------------------------------------------------
  2. //  Basic file for Object Replicator 
  3. //  -------------------------------------------------------------------
  4.  
  5. #include "colors.inc"
  6. #include "textures.inc"
  7. #include "shapes.inc"
  8.  
  9. camera {
  10.    location  <0, 5,-50>
  11.    direction <0, 0,  1>
  12.    up        <0, 1,  0>
  13.    right   <4/3, 0,  0>
  14.    look_at   <0, 5, -24>
  15.  
  16.    translate <50 0 0 >
  17. }
  18.  
  19. light_source {<50, 50, -100> color White}
  20.  
  21. light_source {<-50, 50, -100> color White}
  22.  
  23. // Sky sphere 
  24. sphere { <0, 0, 0>, 10000
  25.    pigment {color blue 1}
  26.    finish {Luminous}
  27. }
  28.  
  29. // Floor plane 
  30. plane { y, 0
  31.    pigment {checker color Black color Gray
  32.      scale <10, 10, 10 > rotate <0, 35, 0 >
  33.            }
  34.    finish {ambient 0.45 diffuse 0.75}
  35. }
  36.