We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f247803 + e3fc7ca commit f24d604Copy full SHA for f24d604
include/boost/geometry/strategies/spherical/point_in_point.hpp
@@ -96,8 +96,10 @@ class point_point_on_spheroid
96
Point1, calculation_type, radian
97
>::type helper_point1, helper_point2;
98
99
- Point1 point1_normalized = return_normalized<Point1>(point1);
100
- Point2 point2_normalized = return_normalized<Point2>(point2);
+ Point1 point1_normalized;
+ strategy::normalize::spherical_point::apply(point1, point1_normalized);
101
+ Point2 point2_normalized;
102
+ strategy::normalize::spherical_point::apply(point2, point2_normalized);
103
104
geometry::transform(point1_normalized, helper_point1);
105
geometry::transform(point2_normalized, helper_point2);
0 commit comments