home *** CD-ROM | disk | FTP | other *** search
- #include <stdio.h>
- #include "matrix.h"
- #include "bezier.h"
- #include "beziert.h"
-
- BezierTime::BezierTime(int maxframe, double maxlength) :
- Bezier::Bezier(Vector(1.0, 0.0, 0.0));
- {
- Vector v((double)maxframe, maxlength, 0.0);
- AddPoint(v,v);
- }
-
- BezierTime::~BezierTime()
- {
- }
-
- void BezierTime::AddPosition(int t, double position)
- {
- if (t <=
- for (int i = 0; i <= points; ++i) {
- if (
- }
-
- void BezierTime::DeletePosition(int t)
- {
- }
-
- void BezierTime::SetPosition(int t, double position)
- {
- }
-
- void BezierTime::SetSpeed(int t, int width, double speed)
- {
- }
-
- double BezierTime::GetPosition(int t)
- {
- }
-
-