home *** CD-ROM | disk | FTP | other *** search
/ gondwana.ecr.mu.oz.au/pub/ / Graphics.tar / Graphics / VOGLE.ZIP / VOGLE / SRC / MSFORT / FPOLY.FOR < prev    next >
Encoding:
Text File  |  2000-02-11  |  1.7 KB  |  87 lines

  1.       interface to subroutine C_polyfill[c](onoff)
  2.       integer *2 onoff
  3.       end
  4.      
  5.       interface to subroutine C_hatchang[c](angle)
  6.       real *8 angle
  7.       end
  8.  
  9.       interface to subroutine C_hatchpitch[c](pitch)
  10.       real *8 pitch
  11.       end
  12.  
  13.       interface to subroutine C_polyhatch[c](onoff)
  14.       integer *2 onoff
  15.       end
  16.  
  17.       interface to subroutine C_poly2[c](n , p[reference])
  18.       integer *2 n
  19.       real p(1, 1)
  20.       end
  21.  
  22.       interface to subroutine C_poly[c](n , p[reference])
  23.       integer *2 n
  24.       real p(1, 1)
  25.       end
  26.  
  27.       interface to subroutine C_makepoly[c]()
  28.       end
  29.  
  30.       interface to subroutine C_closepoly[c]()
  31.       end
  32.  
  33.       interface to subroutine C_backface[c](onoff)
  34.       integer *2 onoff
  35.       end
  36.  
  37.       interface to subroutine C_backfacedir[c](dir)
  38.       integer *2 dir
  39.       end
  40.  
  41.       subroutine polyfill(onoff)
  42.       integer onoff
  43.       call C_polyfill(onoff)
  44.       end
  45.  
  46.       subroutine hatchang(ang)
  47.       call C_hatchang(ang)
  48.       end
  49.  
  50.       subroutine hatchpitch(pitch)
  51.       call C_hatchpitch(pitch)
  52.       end
  53.  
  54.       subroutine polyhatch(onoff)
  55.       integer onoff
  56.       call C_polyhatch(onoff)
  57.       end
  58.  
  59.       subroutine poly2(n, p)
  60.       real p(1, 1)
  61.       call C_poly2(n , p)
  62.       end
  63.  
  64.       subroutine poly(n, p)
  65.       real p(1, 1)
  66.       call C_poly(n , p)
  67.       end
  68.  
  69.       subroutine makepoly
  70.       call C_makepoly
  71.       end
  72.  
  73.       subroutine closepoly
  74.       call C_closepoly
  75.       end
  76.  
  77.       subroutine backface(onoff)
  78.       integer onoff
  79.       call C_backface(onoff)
  80.       end
  81.  
  82.       subroutine backfacedir(dir)
  83.       integer dir
  84.       call C_backfacedir(dir)
  85.       end
  86.  
  87.