deepstone
view src/record.h @ 39:f9b1ff21fd62
merged
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Mon, 10 Mar 2014 17:28:28 +0200 |
parents | |
children |
line source
1 #ifndef RECORD_H_
2 #define RECORD_H_
4 int rec_load(const char *fname);
5 int rec_save(const char *fname);
7 void rec_reset(void);
8 void rec_add(unsigned long tm, float x, float y, float z, float theta, float phi);
9 void rec_get(unsigned long tm, float *x, float *y, float *z, float *theta, float *phi);
11 #endif /* RECORD_H_ */