summaryrefslogtreecommitdiffhomepage
path: root/tracker-pt/ftnoir_tracker_pt_settings.h
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2016-07-18 12:14:51 +0200
committerStanislaw Halik <sthalik@misaki.pl>2016-07-19 07:17:22 +0200
commita9b804e18c811c781a099a70b960f5bbde61257d (patch)
tree069a7de35557f4d9ff141d795d287e4ac128f625 /tracker-pt/ftnoir_tracker_pt_settings.h
parent9fc8ebfd8ab54b9fe1caaf60147dd43a573d67ef (diff)
some: replace hardcoded pi values with the same pi constant
We can't depend on M_PI existing after including cmath.
Diffstat (limited to 'tracker-pt/ftnoir_tracker_pt_settings.h')
-rw-r--r--tracker-pt/ftnoir_tracker_pt_settings.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tracker-pt/ftnoir_tracker_pt_settings.h b/tracker-pt/ftnoir_tracker_pt_settings.h
index 830bf92e..f5256f18 100644
--- a/tracker-pt/ftnoir_tracker_pt_settings.h
+++ b/tracker-pt/ftnoir_tracker_pt_settings.h
@@ -8,6 +8,7 @@
#pragma once
+#include "opentrack-compat/pi-constant.hpp"
#include <limits>
#include <opencv2/core.hpp>
@@ -16,7 +17,7 @@ struct pt_types
using f = double;
static constexpr f eps = std::numeric_limits<f>::epsilon();
- static constexpr f pi = f(3.14159265358979323846);
+ static constexpr f pi = f(OPENTRACK_PI);
template<int n> using vec = cv::Vec<f, n>;
using vec2 = vec<2>;