home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / p / ply15dat.zip / BSPHERE.PI < prev    next >
Text File  |  1992-09-19  |  815b  |  36 lines

  1. // Generic Polyray input File
  2. // Polyray input file: Alexander Enzmann
  3.  
  4. // Set up the camera
  5. viewpoint {
  6.    from <7,10,-10>
  7.    at <0,0,2>
  8.    up <0,1,0>
  9.    angle 45
  10.    hither 1
  11.    resolution 160, 160
  12.    }
  13.  
  14. background sky_blue
  15. light 0.6 * white, <-10,10, -20>
  16. light 0.6 * white, < 10,10, -20>
  17.  
  18. define shiny_red
  19. texture {
  20.    surface {
  21.       ambient red, 0.2
  22.       diffuse red, 0.8
  23.       specular white, 0.7
  24.       microfacet Reitz 10
  25.       }
  26.    }
  27.  
  28. object { sphere <-2,-2, 0>, 1 shiny_red }
  29. object { sphere <-2,-2, 4>, 1 shiny_red }
  30. object { sphere <-2, 2, 0>, 1 shiny_red }
  31. object { sphere <-2, 2, 4>, 1 shiny_red }
  32. object { sphere < 2,-2, 0>, 1 shiny_red }
  33. object { sphere < 2,-2, 4>, 1 shiny_red }
  34. object { sphere < 2, 2, 0>, 1 shiny_red }
  35. object { sphere < 2, 2, 4>, 1 shiny_red }
  36.