home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / cad / rayl200.zip / LAMP.POV < prev    next >
Text File  |  1993-07-21  |  910b  |  31 lines

  1. // Persistence of Vision Raytracer
  2. #include "shapes.inc"
  3. #include "colors.inc"
  4. #include "textures.inc"
  5.  
  6. /*  Trace time for 320*200 on 486DX33 is 00:02:28
  7.  
  8. //----------------------- Definitions start here -----------------------
  9.  
  10. #declare lamp_C1 = texture {Shiny colour Brown}
  11. #declare LatheWork =
  12. #include "lamp.inc"
  13.  
  14. #declare Look_At = <251.500000 0 0>   // Center of object
  15. #declare Location = <251.500000 0 -503.000000>      // Good camera position
  16.  
  17. //----------------------- Display starts here --------------------------
  18.  
  19. camera {
  20.    location  Location
  21.    direction <0.0 0.0 1.0>
  22.    up  <0.0  1.0  0.0>
  23.    right <1.33333 0.0 0.0>
  24.    look_at Look_At
  25. }
  26.  
  27. composite { LatheWork }
  28.  
  29. object { light_source { < 1210.000002622604   1450.200003147125  -1570.300003409386 > colour White } }
  30. object { light_source { < -100.0          1450.200003147125  -1570.300003409386 > colour White } }
  31.