Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: Bezier_Traj_Follower_Example ExperimentServer QEI_pmw MotorShield
BezierCurve.h
00001 class BezierCurve 00002 { 00003 public: 00004 BezierCurve(int dim, int order); 00005 ~BezierCurve(); 00006 void setPoints(float pts[]); 00007 void evaluate(float time, float point[]); 00008 void evaluateDerivative(float time, float point[]); 00009 private: 00010 const int _dim; 00011 const int _order; 00012 float ** _pts; 00013 int * _nck; 00014 int * _nck_deriv; 00015 };
Generated on Wed Jul 27 2022 17:25:55 by
