home *** CD-ROM | disk | FTP | other *** search
/ World of Graphics / WOGRAPH.BIN / 518.STRIPE.VO < prev    next >
Text File  |  1992-02-12  |  450b  |  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.