VectorNav C Library
conv.h
1 #ifndef __VNCONV_H__
2 #define __VNCONV_H__
3 
4 #include "vn/math/vector.h"
5 
9 vec3d ecef_to_lla_v3d(vec3d ecef);
10 
14 vec3d lla_to_ecef_v3d(vec3d lla);
15 
16 #endif
Represents a 3 component vector with an underlying data type of double.
Definition: vector.h:41