diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-07-16 16:57:59 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-07-16 16:57:59 +0200 |
commit | e016dca372bf69f3bb4967a8aba374bc04aea3b4 (patch) | |
tree | 73249375dc7a666acee8c7349e56c095cd6e4369 /tracker-pt/ftnoir_tracker_pt.cpp | |
parent | 1ac33e5d5aea97448c71ea58b12492ae219e88f1 (diff) |
compat/math-imports: use it
Diffstat (limited to 'tracker-pt/ftnoir_tracker_pt.cpp')
-rw-r--r-- | tracker-pt/ftnoir_tracker_pt.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/tracker-pt/ftnoir_tracker_pt.cpp b/tracker-pt/ftnoir_tracker_pt.cpp index 938acc1c..83ea094c 100644 --- a/tracker-pt/ftnoir_tracker_pt.cpp +++ b/tracker-pt/ftnoir_tracker_pt.cpp @@ -8,6 +8,7 @@ #include "ftnoir_tracker_pt.h" #include "compat/camera-names.hpp" +#include "compat/math-imports.hpp" #include <QHBoxLayout> #include <cmath> #include <QDebug> @@ -190,12 +191,6 @@ void Tracker_PT::data(double *data) 0, 1, 0); mat33 R = R_EG * X_GH.R * R_EG.t(); - using std::atan2; - using std::sqrt; - using std::atan; - using std::fabs; - using std::copysign; - // get translation(s) const vec3& t = X_GH.t; |