Library to calculate angles from positions and vice versa (also used for shooting angles)

Dependents:   includeair includeair calcul_Ueff2 Mesure_energie

Revision:
0:b8295c4b5793
Child:
1:6cace9fdb088
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/angleandposition.h	Thu Oct 15 11:19:39 2015 +0000
@@ -0,0 +1,19 @@
+#ifndef _ANGLEANDPOSITION_H_
+#define _ANGLEANDPOSITION_H_
+
+#include "mbed.h"
+#include "math.h"
+
+class angleandposition
+{
+public:
+
+    angleandposition(void);
+
+    float positiontoangle1 (float x_position);
+    float positiontoangle2 (float x_position);
+
+private:
+
+};
+#endif
\ No newline at end of file