Advertisement
Guest User

Untitled

a guest
Mar 8th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include "colors.inc"
  2. #include "textures.inc"
  3.  
  4.  
  5. camera {
  6.     location <4, 16, -12>
  7.     look_at <0, 5 , 0>
  8.     }
  9.    
  10. light_source {
  11.     <10, 10, 0>
  12.     color White
  13.     }    
  14.     light_source {
  15.     <-10, 10, 4>
  16.     color White
  17.     }        
  18.    
  19. //ziemia
  20. plane {
  21.     y, 0
  22.     pigment {Jade}
  23.     }    
  24.          
  25. //niebo
  26. plane{
  27.     z, 100000
  28.     pigment {Bright_Blue_Sky}
  29.     }
  30.      
  31. //Burj Khalifa (Dubaj)
  32. cylinder {
  33.     <0, 12.5, 0>, <0,0,0>, 0.05
  34.     texture{Silver1}
  35.     }    
  36. cylinder {
  37.     <0, 11.5, 0>, <0,0,0>, 0.13
  38.     texture{Silver1}
  39.     }  
  40. cylinder {
  41.     <-0.1, 10, 0>, <-0.1,0,0>, 0.2
  42.     texture{Silver_Metal}
  43.     }    
  44. cylinder {
  45.     <0.1, 10, 0>, <0.1,0,0>, 0.2
  46.     texture{Silver_Metal}
  47.     }  
  48. cylinder {
  49.     <-0.2, 9, -0.05>, <-0.2,0,-0.05>, 0.2
  50.     texture{Silver_Metal}
  51.     }  
  52. cylinder {
  53.     <0.2, 9, -0.05>, <0.2,0,-0.05>, 0.2
  54.     texture{Silver_Metal}
  55.     }      
  56. cylinder {
  57.     <-0.3, 8, -0.1>, <-0.3,0,-0.1>, 0.2
  58.     texture{Silver_Metal}
  59.     }  
  60. cylinder {
  61.     <0.3, 7, -0.1>, <0.3,0,-0.1>, 0.2
  62.     texture{Silver_Metal}
  63.     }      
  64. cylinder {
  65.     <-0.4, 6, -0.15>, <-0.4,0,-0.15>, 0.2
  66.     texture{Silver_Metal}
  67.     }  
  68. cylinder {
  69.     <0.4, 5, -0.15>, <0.4,0,-0.15>, 0.2
  70.     texture{Silver_Metal}
  71.     }  
  72. cylinder {
  73.     <-0.6, 4, -0.15>, <-0.6,0,-0.15>, 0.2
  74.     texture{Silver_Metal}
  75.     }  
  76. cylinder {
  77.     <0.6, 4, -0.15>, <0.6,0,-0.15>, 0.2
  78.     texture{Silver_Metal}
  79.     }  
  80. cylinder {
  81.     <-0.75, 3.7, -0.2>, <-0.75,0,-0.2>, 0.2
  82.     texture{Silver_Metal}
  83.     }
  84. cylinder {
  85.     <0.75, 3.7, -0.2>, <0.75,0,-0.2>, 0.2
  86.     texture{Silver_Metal}
  87.     }
  88. cylinder {
  89.     <-0.9, 3.4, -0.3>, <-0.9,0,-0.3>, 0.2
  90.     texture{Silver_Metal}
  91.     }  
  92. cylinder {
  93.     <0.9, 3.4, -0.3>, <0.9,0,-0.3>, 0.2
  94.     texture{Silver_Metal}
  95.     }  
  96. cylinder {
  97.     <-1, 2.5, -0.4>, <-1,0,-0.4>, 0.2
  98.     texture{Silver_Metal}
  99.     }  
  100. cylinder {
  101.     <1, 2.5, -0.4>, <1,0,-0.4>, 0.2
  102.     texture{Silver_Metal}    
  103.     }                            
  104. //basen!
  105. prism {
  106.     0, 0.1, 9,
  107.     <2,3>, <3,2>, <3,-4>, <2, -5>, <-2, -5>, <-3, -4>, <-3, 2>, <-2, 3>, <2,3>
  108.                    
  109.     scale <2, 0, 2>                  
  110.     texture {Water scale 2}
  111.    
  112.     }        
  113. //wyspa
  114. sor {4, <0,0>,<2,0>,<2,0.2>,<0,0.2>
  115. pigment {color MediumForestGreen}
  116. }                                  
  117. //droga
  118. box { <0.7, 0.25, -1.7>, <-0.7, 0, -30>
  119. pigment {color rgb <0.06, 0.06, 0.2>}
  120. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement