home *** CD-ROM | disk | FTP | other *** search
/ Computerspiele Selbermachen / computerspieleselbermachen.iso / pov / tour.pov < prev    next >
Text File  |  1993-02-06  |  2KB  |  102 lines

  1. #include "colors.inc"
  2. #include "shapes.inc"
  3. #include "textures.inc"
  4. #include "tour.inc"
  5.  
  6. #declare Ball1_Texture = texture {
  7.    color Red
  8.    phong .8  phong_size 60
  9.    ambient 0.15
  10.    diffuse 0.8
  11. }
  12.  
  13. #declare Building_Texture = texture {
  14.    phong .8  phong_size 60
  15.    ambient 0.4
  16.    diffuse 0.5
  17. }
  18.  
  19. camera {
  20.     location <xpos ypos zpos>
  21.     direction <0 0 1.5>
  22.     up <0 1 0>
  23.     right <1.33 0 0>
  24.     look_at <xlook ylook zlook>
  25. }
  26.  
  27. object {
  28.     light_source { <-10 10 -20> color White}
  29. }
  30.  
  31. object {
  32.     light_source { <10 10 -20> color White}
  33. }
  34.  
  35. object {
  36.     light_source { <3 10 20> color White}
  37. }
  38.  
  39. //  Buildings
  40. object {
  41.     box {<-.5 0 -2> <.5 3 2>}
  42.     texture {Building_Texture color green .8}
  43.     translate <-8 0 0>
  44. }
  45.  
  46. object {
  47.     box {<-1 0 -.5> <1 2 .5>}
  48.     texture {Building_Texture color blue .8}
  49.     translate <4 0 -4>
  50. }
  51.  
  52. object {
  53.     box {<-1 0 -.5> <1 2 .5>}
  54.     texture {Building_Texture color blue .8}
  55.     translate <9 0 -4>
  56. }
  57.  
  58. object {
  59.     box {<-1 0 -.5> <1 2 .5>}
  60.     texture {Building_Texture color blue .8}
  61.     translate <4 0 4>
  62. }
  63.  
  64. object {
  65.     box {<-1 0 -.5> <1 2 .5>}
  66.     texture {Building_Texture color blue .8}
  67.     translate <9 0 4>
  68. }
  69.  
  70. object {
  71.     box {<-.7 0 -.5> <.7 4 .5>}
  72.     texture {Building_Texture color blue .5 red .5}
  73.     translate <-6 0 -6>
  74. }
  75.  
  76. object {
  77.     box {<-2 0 -.5> <2 3 .5>}
  78.     texture {Building_Texture color blue .5 red .5}
  79.     translate <-7 0 6>
  80. }
  81.  
  82. //  Dome
  83. object {
  84.     sphere { <0 0 0> 1.6}
  85.     texture { Ball1_Texture }
  86. }
  87.  
  88.  
  89. // floor
  90. object {
  91.    plane { <0 1 0> 0 }
  92.    texture { color red .7 green .7 blue .7}
  93. }
  94.  
  95. /*
  96. // back wall
  97. object {
  98.    plane { <0 0 1> 100 }
  99.    texture { color red 0.3 green 0.3 blue 0.5 }
  100. }
  101. */
  102.