Just a header file containing structs and constants etc. that are used across my libraries. Prevents multiple declarations.

Dependents:   Leg

Revision:
1:4d64faffb516
diff -r a088aaa1c8e2 -r 4d64faffb516 Utils.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Utils.cpp	Tue Jun 16 18:00:02 2015 +0000
@@ -0,0 +1,8 @@
+#include "Utils.h"
+
+vector_t create_vector(float x,float y,float z) {
+    
+    vector_t v = {x,y,z};
+    
+    return v;    
+}
\ No newline at end of file