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.
Dependents: mbed_accelerometer
Fork of LSM303DLHC by
vector.h
00001 #ifndef vector_h 00002 #define vector_h 00003 typedef struct vector 00004 { 00005 float x, y, z; 00006 } vector; 00007 00008 extern void vector_cross(const vector *a, const vector *b, vector *out); 00009 extern float vector_dot(const vector *a,const vector *b); 00010 extern void vector_normalize(vector *a); 00011 #endif
Generated on Wed Jul 20 2022 00:36:38 by
1.7.2
