home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 3 / RISC_DISC_3.iso / resources / etexts / gems / gemsv / ch4_9 / lincrv.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-04-04  |  264 b   |  12 lines

  1. /****** lincrv.h ******/
  2. /* Ken Shoemake, 1994 */
  3.  
  4. #define MAXDIM 2
  5. typedef float Vect[MAXDIM];
  6. typedef float Knot;
  7. typedef int Bool;
  8.  
  9. int DialASpline(Knot t, Knot a[], Vect p[], int m, int n, Vect work[],
  10.                 unsigned int Cn, Bool interp, Vect val);
  11.  
  12.