home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Raytrace & Morphing / SOS-RAYTRACE.ISO / programm / utility / windows / objrep / egg.inc < prev    next >
Encoding:
Text File  |  1994-02-21  |  352 b   |  23 lines

  1. // File for testing Replicator
  2.  
  3.  
  4. // Basic_Texture
  5. #declare Basic_Texture =
  6.     finish {
  7.         ambient .4
  8.         diffuse .8
  9.         phong   1
  10.         phong_size 100
  11.         brilliance 2
  12.     }
  13.  
  14. //  Egg
  15. #declare Egg=
  16. object { sphere { <0, 0, 0>, .5 } 
  17.   
  18.   finish { Basic_Texture}
  19.   pigment { White }
  20.   scale < 1, 1.5, 1 >
  21.   
  22.   }
  23.