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

  1. #include "vogle.h"
  2.  
  3. /*
  4.  * CurveBasis
  5.  */
  6. void
  7. CurveBasis(basis)
  8.     float    basis[4][4];
  9. {
  10.     curvebasis(basis);
  11. }
  12.  
  13. /*
  14.  * CurvePrecision
  15.  */
  16. void
  17. CurvePrecision(nsegments)
  18.     int    nsegments;
  19. {
  20.     curveprecision(nsegments);
  21. }
  22.  
  23. /*
  24.  * Rcurve
  25.  */
  26. void
  27. Rcurve(geom)
  28.     float    geom[4][4];
  29. {
  30.     rcurve(geom);
  31. }
  32.  
  33. /*
  34.  * curve
  35.  */
  36. void
  37. Curve(geom)
  38.     float    geom[4][3];
  39. {
  40.     curve(geom);
  41. }
  42.  
  43. /*
  44.  * Curven
  45.  */
  46. void
  47. Curven(n, geom)
  48.     int    n;
  49.     float    geom[][3];
  50. {
  51.     curven(n, geom);
  52. }
  53.