home *** CD-ROM | disk | FTP | other *** search
/ Current Shareware 1994 January / SHAR194.ISO / graphuti / rayl210.zip / LAMP.POV < prev    next >
Text File  |  1993-09-18  |  1KB  |  32 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}     // used after RAW
  11. #declare LatheWorkTex = texture {Shiny colour Brown}    // used for POVRAY
  12. #declare LatheWork =
  13. #include "lamp.inc"
  14.  
  15. #declare Look_At = <251.500000 0 0>   // Center of object
  16. #declare Location = <251.500000 0 -503.000000>      // Good camera position
  17.  
  18. //----------------------- Display starts here --------------------------
  19.  
  20. camera {
  21.    location  Location
  22.    direction <0.0 0.0 1.0>
  23.    up  <0.0  1.0  0.0>
  24.    right <1.33333 0.0 0.0>
  25.    look_at Look_At
  26. }
  27.  
  28. composite { LatheWork }
  29.  
  30. object { light_source { < 1210.000002622604   1450.200003147125  -1570.300003409386 > colour White } }
  31. object { light_source { < -100.0          1450.200003147125  -1570.300003409386 > colour White } }
  32.