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: mbed BLE_API X_NUCLEO_IDB0XA1 MODSERIAL
Bezier.h
00001 00002 #include <vector> 00003 00004 using namespace std; 00005 00006 class Bezier 00007 { 00008 public: 00009 vector<float> xpos, ypos; 00010 Bezier(); 00011 ~Bezier(); 00012 void add_point (float x, float y); 00013 // t must be [0:1] 00014 void get_pos(float t, float *xret, float *yret); 00015 };
Generated on Thu Jul 14 2022 17:21:51 by
1.7.2