home *** CD-ROM | disk | FTP | other *** search
/ gondwana.ecr.mu.oz.au/pub/ / Graphics.tar / Graphics / VOGLE.ZIP / SRC / SUNFORT / FPOLY.C < prev    next >
C/C++ Source or Header  |  1994-04-27  |  819b  |  102 lines

  1. #include "vogle.h"
  2.  
  3. /*
  4.  * polyfill_
  5.  */
  6. void
  7. polyfill_(onoff)
  8.     int    *onoff;
  9. {
  10.     polyfill(*onoff);
  11. }
  12.  
  13. /*
  14.  * hatchang_
  15.  */
  16. void
  17. hatchang_(ang)
  18.     float    *ang;
  19. {
  20.     hatchang(*ang);
  21. }
  22.  
  23. /*
  24.  * hatchpitch_
  25.  */
  26. void
  27. hatchpitch_(pitch)
  28.     float    *pitch;
  29. {
  30.     hatchpitch(*pitch);
  31. }
  32.  
  33. /*
  34.  * polyhatch_
  35.  */
  36. void
  37. polyhatch_(onoff)
  38.     int    *onoff;
  39. {
  40.     polyhatch(*onoff);
  41. }
  42.  
  43. /*
  44.  * poly2_
  45.  */
  46. void
  47. poly2_(n, parray)
  48.     int    *n;
  49.     float    parray[][2];
  50. {
  51.     poly2(*n, parray);
  52. }
  53.  
  54. /*
  55.  * poly_
  56.  */
  57. void
  58. poly_(n, parray)
  59.     int    *n;
  60.     float    parray[][3];
  61. {
  62.     poly(*n, parray);
  63. }
  64.  
  65. /*
  66.  * makepoly_
  67.  */
  68. void
  69. makepoly_()
  70. {
  71.     makepoly();
  72. }
  73.  
  74. /*
  75.  * closepoly_
  76.  */
  77. void
  78. closepoly_()
  79. {
  80.     closepoly();
  81. }
  82.  
  83. /*
  84.  * backface_
  85.  */
  86. void
  87. backface_(onoff)
  88.     int    *onoff;
  89. {
  90.     backface(*onoff);
  91. }
  92.  
  93. /*
  94.  * backfacedir_
  95.  */
  96. void
  97. backfacedir_(clockwise)
  98.     int    *clockwise;
  99. {
  100.     backfacedir(*clockwise);
  101. }
  102.