home *** CD-ROM | disk | FTP | other *** search
/ TopWare 18: Liquid / Image.iso / liquid / top1089 / backmap.pov next >
Text File  |  1993-12-17  |  721b  |  38 lines

  1. //
  2. // Create stone slab for RDSGEN background map
  3. //
  4.  
  5. #include "colors.inc"
  6. #include "textures.inc"
  7. #include "shapes.inc"
  8. #include "stones.inc"
  9.  
  10. // Point of view
  11. camera {
  12.    location <0.0, 0, -44>
  13.    look_at <0, 0, 0>
  14. }
  15.  
  16. // Light source
  17. light_source { <0, 0, -200> color White }
  18.  
  19. // Stone plane 
  20. object {
  21.        intersection {
  22.             plane { < 1, 0,  0 > 20 }
  23.             plane { <-1, 0,  0 > 20 }
  24.             plane { < 0, 1,  0 > 20 }
  25.             plane { < 0, 1,  0 > 18 }
  26.             plane { < 0, 0,  1 > 20 }
  27.             plane { < 0, 0, -1 > 20 }
  28.        }
  29.        texture { Stone20
  30.          finish { phong 0.0 }
  31.              ambient 1
  32.                 diffuse 0
  33.          scale 2.0
  34.            }            
  35. }
  36.  
  37.  
  38.