home *** CD-ROM | disk | FTP | other *** search
/ Dream 44 / Amiga_Dream_44.iso / Amiga / pov / exemples / ArticleDream / premier.pov < prev    next >
Text File  |  1997-09-10  |  991b  |  65 lines

  1. #include "colors.inc"
  2. #include "textures.inc"
  3. #include "shapes.inc"
  4.  
  5. camera {
  6.   location < 3, 6, -7 >
  7.   look_at  < 0, 3.0, 0 >
  8. }
  9.  
  10. sphere {
  11.   < 0, 4, 0 >, 2
  12.   texture {
  13.     Glass3
  14.    }
  15. }
  16.  
  17. box {
  18.   < -1, 0, -1 >
  19.   < 1, 3.0, 1 >
  20.   texture { DMFWood4 }
  21. }
  22.  
  23. box {
  24.    < -1, -1, -1 >,
  25.    < 1, 1, 1 >
  26.    scale 0.5
  27.    rotate < -35, 55, 0 >
  28.    translate < 0, 4, 0 >
  29.    texture {
  30.      tiles { texture { Brown_Agate }
  31.              tile2 texture { Rosewood }
  32.      }
  33.      rotate < -35, 55, 0 >
  34.      scale 0.2
  35.    }
  36. }
  37.  
  38. plane {
  39.   < 0, 1, 0 >, 0
  40.   texture {
  41.     pigment { checker
  42.                 color red 0.0 green 0.0 blue 0.4
  43.                 color red 0.0 green 0.0 blue 0.8
  44.     }
  45.     finish { reflection 0.2 phong 0.4 phong_size 60 }
  46.   }
  47. }
  48.  
  49. plane {
  50.   < 0, 0, -1 >, -10
  51.   texture {
  52.     Polished_Chrome
  53.   }
  54. }
  55.  
  56. light_source {
  57.   < 2,16,-5 >
  58.   color red 1.0 green 1.0 blue 1.0
  59. }
  60.  
  61. light_source {
  62.   < -8, 10, 4 >
  63.   color red 0.8 green 0.8 blue 0.8
  64. }
  65.