diff options
Diffstat (limited to 'opentrack-logic/simple-mat.hpp')
-rw-r--r-- | opentrack-logic/simple-mat.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/opentrack-logic/simple-mat.hpp b/opentrack-logic/simple-mat.hpp index f1ad0717..09de6004 100644 --- a/opentrack-logic/simple-mat.hpp +++ b/opentrack-logic/simple-mat.hpp @@ -267,9 +267,9 @@ template<int y, int x> using dmat = Mat<double, y, x>; using rmat = dmat<3, 3>; using euler_t = dmat<3, 1>; -OPENTRACK_API_EXPORT rmat euler_to_rmat(const euler_t& input); +rmat OPENTRACK_LOGIC_EXPORT euler_to_rmat(const euler_t& input); // http://stackoverflow.com/a/18436193 -euler_t OPENTRACK_API_EXPORT rmat_to_euler(const dmat<3, 3>& R); +euler_t OPENTRACK_LOGIC_EXPORT rmat_to_euler(const dmat<3, 3>& R); } // end ns euler |