home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 17 / CD_ASCQ_17_101194.iso / vrac / geokit10.zip / TEST.POV < prev    next >
Text File  |  1994-08-20  |  2KB  |  92 lines

  1. #include "colors.inc"
  2. #include "shapes.inc"
  3. #include "textures.inc"
  4. #include "test.inc"
  5. #include "test1.inc"
  6. #include "test2.inc"
  7.  
  8. camera {
  9.   location <13, 5, -13>
  10.   direction <0, 0, 1.1>
  11.   up <0, 1, 0>
  12.   right <1.33, 0, 0>
  13.   look_at <0,4,0>
  14. }
  15.  
  16. #declare LinkTexture=
  17. texture{
  18.         pigment{Silver}
  19.         finish{
  20.                specular 1         
  21.                roughness .00002
  22.                ambient .3
  23.                diffuse .5
  24.                crand .0005
  25.                reflection .15
  26.               }
  27.        }
  28. #declare NodeTexture=
  29. texture{
  30.         pigment{Silver}
  31.         finish{
  32.                specular 1
  33.                roughness .00001
  34.                ambient .3
  35.                diffuse .5
  36.                crand .0005
  37.                reflection .15
  38.               }
  39.        }
  40. #declare PaneTexture=
  41. texture{
  42.         pigment{Turquoise filter .250}
  43.         finish{
  44.                specular 1
  45.                roughness .00005
  46.                ambient .3
  47.                diffuse .7
  48.                crand .005
  49.                reflection .15
  50.               }
  51.        }
  52.  
  53.  
  54.  
  55. object { light_source { <5,18,12>color White } }
  56. object { light_source { <5,18,-12>color White } }
  57.  
  58. object {plane{y,0} pigment{checker color Black color White} finish{Shiny}}
  59.  
  60. #declare Structure=
  61. union{
  62.       object {TestLinks texture{LinkTexture}}
  63.       object {TestNodes texture{NodeTexture}}
  64.       object {TestPanes texture{PaneTexture}}
  65.      }
  66. #declare Structure1=
  67. union{
  68.       object {Test1Links texture{LinkTexture}}
  69.       object {Test1Nodes texture{NodeTexture}}
  70.       object {Test1Panes texture{PaneTexture}}
  71.      }
  72. #declare Structure2=
  73. union{
  74.       object {Test2Links texture{LinkTexture}}
  75.       object {Test2Nodes texture{NodeTexture}}
  76.       object {Test2Panes texture{PaneTexture}}
  77.      }
  78.  
  79.  
  80. object { sphere { <0, 0, 0>,50000 }
  81.        texture {
  82.                Blue_Sky3
  83.                scale <80000, 50000, 30000>
  84.                finish { crand .05 ambient .7 }
  85.                }
  86. }
  87.  
  88.  
  89. object{Structure}
  90. object{Structure1 translate <-5,0,-5>}
  91. object{Structure2 translate <5,0,5>}
  92.