Advertisement
Guest User

Untitled

a guest
May 23rd, 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. #include "shapes.inc"
  4. #include "woods.inc"
  5. #include "glass.inc"
  6. #include "finish.inc"
  7. camera {
  8.     perspective
  9.     right x * 1.33
  10.     location <5, 10, -10>
  11.     look_at <0, 3, 0>
  12. }
  13. light_source {
  14.     <-5, 10, -10>
  15.     color rgb <0.5, 0.5, 0.5>
  16.     area_light <2, 0, 0>, <0, 2, 0>, 2, 2
  17.     jitter
  18. }
  19. light_source {
  20.     <-5, 10, 10>
  21.     color rgb <0.5, 0.5, 0.5>
  22.     area_light <2, 0, 0>, <0, 2, 0>, 2, 2
  23.     jitter
  24. }
  25. plane {
  26.     y, 0
  27.     texture { pigment { P_WoodGrain3A color_map { M_Wood12A }} scale <10, 1, 10> }
  28.     texture { pigment { P_WoodGrain3B color_map { M_Wood12B }} scale <10, 1, 10> }
  29. }
  30. difference {
  31.     sor {
  32.         6,
  33.         <0.8, 0>,
  34.         <0.8, 0.1>,
  35.         <0.9, 0.2>,
  36.         <1, 0.5>,
  37.         <0.7, 2>,
  38.         <0.4, 3>
  39.     }
  40.     sor {
  41.         6,
  42.         <0.75, 0>,
  43.         <0.75, 0.15>,
  44.         <0.85, 0.2>,
  45.         <0.95, 0.5>,
  46.         <0.65, 2.05>,
  47.         <0.35, 3>
  48.     }
  49.     material {
  50.         texture {pigment {color Clear} finish {F_Glass4}}
  51.         interior {I_Glass_Caustics2 fade_color Col_Blue_01}
  52.     }
  53.     scale <4, 4, 4>
  54. }
  55. sor {
  56.     6,
  57.     <0, 0>,
  58.     <0.75, 0.15>,
  59.     <0.85, 0.2>,
  60.     <0.95, 0.5>,
  61.     <0.65, 1>,
  62.     <0, 1.2>
  63.     texture {pigment {rgbf <1,1,1,0.2>} finish {Phong_Glossy}}
  64.     scale <4, 4, 4>
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement