/* spenum.h * * Created : 4 Feb 1999 * Chris Rodriguez */ #ifndef SPENUM_H #define SPENUM_H /* This keeps a standard way of defining all the spline files that you can get. */ typedef enum {CATMULLROM, HERMITE, BSPLINE, BEZIER} SplineType; #endif