home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / GRAPHICS / MISC / VIVID2.ZIP / STRIPE.VO < prev    next >
Encoding:
Text File  |  1992-02-13  |  450 b   |  30 lines

  1.  
  2. //      striped pool ball
  3.  
  4.  
  5. //      do the stripe first
  6.  
  7. COLOR_SURF
  8.  
  9. sphere {
  10.     center 0 0 0
  11.     radius 1.25
  12.     clip { center 0 0  .5 normal 0 0 -1 }
  13.     clip { center 0 0 -.5 normal 0 0  1 }
  14. }
  15.  
  16. //      then the white part
  17.  
  18. WHITE_SURF
  19.  
  20. sphere {        // top half
  21.     center 0 0 0
  22.     radius 1.25
  23.     clip { center 0 0 .5 normal 0 0 1 }
  24. }
  25. sphere {        // bottom half
  26.     center 0 0 0
  27.     radius 1.25
  28.     clip { center 0 0 -.5 normal 0 0 -1 }
  29. }
  30.