home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 2 / goldfish_vol2_cd1.bin / files / misc / sci / splines / proto / bezier_protos.h < prev    next >
Encoding:
Text File  |  1994-09-16  |  468 b   |  21 lines

  1. /* Prototypes for functions defined in
  2. bezier.c
  3.  */
  4.  
  5. void Midpoint(REAL_POINT * m,
  6.               REAL_POINT * p0,
  7.               REAL_POINT * p1);
  8.  
  9. void TickMark(REAL_POINT * t,
  10.               int n,
  11.               int d,
  12.               REAL_POINT * p0,
  13.               REAL_POINT * p1);
  14.  
  15. void DrawBezierArc(WINDOW * w,
  16.                    REAL_POINT * p000,
  17.                    REAL_POINT * p001,
  18.                    REAL_POINT * p011,
  19.                    REAL_POINT * p111);
  20.  
  21.