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

  1. #include "vogle.h"
  2.  
  3. /*
  4.  * CirclePrecision
  5.  */
  6. void
  7. CirclePrecision(prec)
  8.     int    prec;
  9. {
  10.     circleprecision(prec);
  11. }
  12.  
  13. /*
  14.  * ArcPrecision
  15.  */
  16. void
  17. ArcPrecision(prec)
  18.     int    prec;
  19. {
  20.     circleprecision(prec);
  21. }
  22.  
  23. /*
  24.  * Arc
  25.  */
  26. void
  27. Arc(x, y, radius, startang, endang)
  28.     float    x, y, radius;
  29.     float    startang, endang;
  30. {
  31.     arc(x, y, radius, startang, endang);
  32. }
  33.  
  34. /*
  35.  * Sector
  36.  */
  37. void
  38. Sector(x, y, radius, startang, endang)
  39.     float    x, y, radius;
  40.     float    startang, endang;
  41. {
  42.     sector(x, y, radius, startang, endang);
  43. }
  44.  
  45. /*
  46.  * Circle
  47.  */
  48. void
  49. Circle(x, y, radius)
  50.     float    x, y, radius;
  51. {
  52.     circle(x, y, radius);
  53. }
  54.  
  55.