home *** CD-ROM | disk | FTP | other *** search
/ World of Graphics / WOGRAPH.BIN / 528.STACK.V < prev    next >
Text File  |  1992-03-15  |  968b  |  67 lines

  1.  
  2. //       stack o' balls
  3.  
  4. #include color.vc
  5.  
  6. studio {
  7.     from 6 12 6
  8.     at 0 0 1
  9.     up 0 0 1
  10.     angle 25
  11.     res 640 480
  12.     aspect 4/3
  13.     antialias adaptive
  14.     bkg black
  15.     ambient black
  16. }
  17.  
  18. light {
  19.     type point
  20.     falloff 1
  21.     position 4 6 5
  22.     color  3 3 3
  23. }
  24. light {
  25.     type point
  26.     falloff 1
  27.     position -7 3 5
  28.     color 3 3 3
  29. }
  30. light {
  31.     type point
  32.     falloff 1
  33.     position 3 -8 5
  34.     color  3 3 3
  35. }
  36.  
  37. surface {
  38.     texture {
  39.         pattern checker
  40.         scale 1 1 0
  41.         surface { diff white spec .2 .2 .2 }
  42.         surface { diff black spec .2 .2 .2 }
  43.     }
  44. }
  45.  
  46. ring {
  47.     location 0 0 0
  48.     normal 0 0 1
  49.     radius 100
  50. }
  51.  
  52. surface { diff red spec .3 .3 .3 shine 500 }
  53. sphere { center 0 1 .85 radius .85 }
  54.  
  55. surface { diff blue spec .3 .3 .3 shine 500}
  56. sphere { center .85 -.5 .85 radius .85 }
  57.  
  58. surface { diff green spec .3 .3 .3 shine 500}
  59. sphere { center -.85 -.5 .85 radius .85 }
  60.  
  61. surface { diff .2 .2 .2 spec .8 .8 .8 shine 500}
  62. sphere { center 0 0 2.234 radius .85 }
  63.  
  64.  
  65.  
  66.  
  67.