home *** CD-ROM | disk | FTP | other *** search
/ Avalon - 3D Objects & Resources / Avalon.iso / objects / pov / icosohed.pov < prev    next >
Encoding:
Text File  |  1995-01-01  |  1.6 KB  |  62 lines

  1. // Persistence of Vision RayTracer version 2 Scene description file
  2. // File: icosohed.pov
  3. // Description: Blobian Icosohedron
  4. // Date: 04-02-94
  5. // Author: David Winkler winkledv@laird.ccds.cincinnati.oh.us
  6. //
  7.  
  8. // ==== Standard POV-Ray Includes ====
  9. #include "colors.inc"    // Standard Color definitions
  10. #include "textures.inc"    // Standard Texture definitions
  11.  
  12. // set viewer's position in the scene
  13. camera
  14. {
  15.   location  0.75*<-4., 4, -7> // <X Y Z>
  16.   direction 2.0*z             // which way are we looking <X Y Z>
  17.   up        y                 // which way is +up <X Y Z>
  18.   right     4/3*x             // which way is +right <X Y Z> and aspect ratio
  19.   look_at   <0.0,  0.0,  0.0> // point center of view at this point <X Y Z>
  20. }
  21.  
  22.  
  23. // create a regular point light source
  24. light_source
  25. {
  26.   0*x // light's position (translated below)
  27.   color red 1.0  green 1.0  blue 1.0  // light's color
  28.   translate <-3, 4, -2>
  29. }
  30.  
  31. blob
  32. {
  33.   threshold 0.75
  34.   component 1.0, 1.0, <0,0,1.17557>
  35.   component 1.0, 1.0, <1.05146,0,0.525731>
  36.   component 1.0, 1.0, <0.32492,1,0.525731>
  37.   component 1.0, 1.0, <-0.850651,0.618034,0.525731>
  38.   component 1.0, 1.0, <-0.850651,-0.618034,0.525731>
  39.   component 1.0, 1.0, <0.32492,-1,0.525731>
  40.   component 1.0, 1.0, <0.850651,0.618034,-0.525731>
  41.   component 1.0, 1.0, <-0.32492,1,-0.525731>
  42.   component 1.0, 1.0, <-1.05146,0,-0.525731>
  43.   component 1.0, 1.0, <-0.32492,-1,-0.525731>
  44.   component 1.0, 1.0, <0.850651,-0.618034,-0.525731>
  45.   component 1.0, 1.0, <0,0,-1.17557>
  46.  
  47.   texture
  48.   {
  49.     pigment
  50.     {
  51.     color Red
  52.     }
  53.     finish
  54.     {
  55.     phong 0.8
  56.     ambient 0.4
  57.     }
  58.   }
  59. }
  60.  
  61.  
  62.