home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 March / VPR9703A.ISO / VPR_DATA / DOGA / SOURCES / MEDIT.LZH / BEZIERT.H < prev    next >
C/C++ Source or Header  |  1995-08-23  |  433b  |  20 lines

  1. #ifndef _BEZIERT_
  2. #define _BEZIERT_
  3. #ifndef TRUE
  4. #define TRUE 1
  5. #define FALSE 0
  6. #endif
  7. #include "bezier.h"
  8.  
  9. class BezierTime : public Bezier  {
  10. public:
  11.     BezierTime(int maxframe, double maxlength);
  12.     ~BezierTime();
  13.     void AddPosition(int t, double position);
  14.     void DeletePosition(int t);
  15.     void SetPosition(int t, double position);
  16.     void SetSpeed(int t, int width, double speed);
  17.     double GetPosition(int t);
  18. };
  19. #endif
  20.