home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / graphics / model / a247ext < prev    next >
Internet Message Format  |  1999-04-27  |  961b

  1. From: Nick Shore <N.R.Shore@newcastle.ac.uk>
  2. Date: Tue, 25 Feb 92 12:28:21 WET
  3.  
  4.  
  5. { Header file for !Model, an application by Pete Goodwin (c) 1991 }
  6.  
  7. #declare Box = intersection
  8.   plane <0.0 0.0 1.0> 1.0 end_plane
  9.   plane <0.0 0.0 -1.0> 1.0 end_plane
  10.   plane <0.0 1.0 0.0> 1.0 end_plane
  11.   plane <0.0 -1.0 0.0> 1.0 end_plane
  12.   plane <1.0 0.0 0.0> 1.0 end_plane
  13.   plane <-1.0 0.0 0.0> 1.0 end_plane
  14. end_intersection
  15.  
  16. #declare Cylinder = intersection
  17.   quadric
  18.     <1.0 0.0 1.0>
  19.     <0.0 0.0 0.0>
  20.     <0.0 0.0 0.0>
  21.     -1.0
  22.   end_quadric
  23.   plane <0.0 1.0 0.0> 1.0 end_plane
  24.   plane <0.0 -1.0 0.0> 1.0 end_plane
  25. end_intersection
  26.  
  27. #declare Cone = intersection
  28.   quadric
  29.     <1.0 -1.0 1.0>
  30.     <0.0 0.0 0.0>
  31.     <0.0 0.0 0.0>
  32.     0.0
  33.   end_quadric
  34.   plane <0.0 1.0 0.0> 0.0 end_plane
  35.   plane <0.0 -1.0 0.0> 1.0 end_plane
  36. end_intersection
  37.  
  38. #declare Scalable_Sphere = quadric
  39.         <1.0 1.0 1.0>
  40.         <0.0 0.0 0.0>
  41.         <0.0 0.0 0.0>
  42.         -1.0
  43. end_quadric
  44.  
  45.  
  46.