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.
Fork of LSM303DLH by
vector.h@0:de767f4959ef, 2011-04-06 (annotated)
- Committer:
- shimniok
- Date:
- Wed Apr 06 05:05:10 2011 +0000
- Revision:
- 0:de767f4959ef
Initial revision
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| shimniok | 0:de767f4959ef | 1 | #ifndef vector_h |
| shimniok | 0:de767f4959ef | 2 | #define vector_h |
| shimniok | 0:de767f4959ef | 3 | typedef struct vector |
| shimniok | 0:de767f4959ef | 4 | { |
| shimniok | 0:de767f4959ef | 5 | float x, y, z; |
| shimniok | 0:de767f4959ef | 6 | } vector; |
| shimniok | 0:de767f4959ef | 7 | |
| shimniok | 0:de767f4959ef | 8 | extern void vector_cross(const vector *a, const vector *b, vector *out); |
| shimniok | 0:de767f4959ef | 9 | extern float vector_dot(const vector *a,const vector *b); |
| shimniok | 0:de767f4959ef | 10 | extern void vector_normalize(vector *a); |
| shimniok | 0:de767f4959ef | 11 | #endif |
