Imported Upstream version 1.72.0
[platform/upstream/boost.git] / boost / geometry / srs / projections / proj / putp3.hpp
index 3f6fceb..b7ee613 100644 (file)
@@ -2,8 +2,8 @@
 
 // Copyright (c) 2008-2015 Barend Gehrels, Amsterdam, the Netherlands.
 
-// This file was modified by Oracle on 2017, 2018.
-// Modifications copyright (c) 2017-2018, Oracle and/or its affiliates.
+// This file was modified by Oracle on 2017, 2018, 2019.
+// Modifications copyright (c) 2017-2019, Oracle and/or its affiliates.
 // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle.
 
 // Use, modification and distribution is subject to the Boost Software License,
@@ -63,20 +63,14 @@ namespace projections
                 T    A;
             };
 
-            // template class, using CRTP to implement forward/inverse
             template <typename T, typename Parameters>
             struct base_putp3_spheroid
-                : public base_t_fi<base_putp3_spheroid<T, Parameters>, T, Parameters>
             {
                 par_putp3<T> m_proj_parm;
 
-                inline base_putp3_spheroid(const Parameters& par)
-                    : base_t_fi<base_putp3_spheroid<T, Parameters>,
-                     T, Parameters>(*this, par) {}
-
                 // FORWARD(s_forward)  spheroid
                 // Project coordinates from geographic (lon, lat) to cartesian (x, y)
-                inline void fwd(T const& lp_lon, T const& lp_lat, T& xy_x, T& xy_y) const
+                inline void fwd(Parameters const& , T const& lp_lon, T const& lp_lat, T& xy_x, T& xy_y) const
                 {
                     xy_x = C * lp_lon * (1. - this->m_proj_parm.A * lp_lat * lp_lat);
                     xy_y = C * lp_lat;
@@ -84,7 +78,7 @@ namespace projections
 
                 // INVERSE(s_inverse)  spheroid
                 // Project coordinates from cartesian (x, y) to geographic (lon, lat)
-                inline void inv(T const& xy_x, T const& xy_y, T& lp_lon, T& lp_lat) const
+                inline void inv(Parameters const& , T const& xy_x, T const& xy_y, T& lp_lon, T& lp_lat) const
                 {
                     lp_lat = xy_y / C;
                     lp_lon = xy_x / (C * (1. - this->m_proj_parm.A * lp_lat * lp_lat));
@@ -135,10 +129,9 @@ namespace projections
     struct putp3_spheroid : public detail::putp3::base_putp3_spheroid<T, Parameters>
     {
         template <typename Params>
-        inline putp3_spheroid(Params const& , Parameters const& par)
-            : detail::putp3::base_putp3_spheroid<T, Parameters>(par)
+        inline putp3_spheroid(Params const& , Parameters & par)
         {
-            detail::putp3::setup_putp3(this->m_par, this->m_proj_parm);
+            detail::putp3::setup_putp3(par, this->m_proj_parm);
         }
     };
 
@@ -158,10 +151,9 @@ namespace projections
     struct putp3p_spheroid : public detail::putp3::base_putp3_spheroid<T, Parameters>
     {
         template <typename Params>
-        inline putp3p_spheroid(Params const& , Parameters const& par)
-            : detail::putp3::base_putp3_spheroid<T, Parameters>(par)
+        inline putp3p_spheroid(Params const& , Parameters & par)
         {
-            detail::putp3::setup_putp3p(this->m_par, this->m_proj_parm);
+            detail::putp3::setup_putp3p(par, this->m_proj_parm);
         }
     };
 
@@ -170,8 +162,8 @@ namespace projections
     {
 
         // Static projection
-        BOOST_GEOMETRY_PROJECTIONS_DETAIL_STATIC_PROJECTION(srs::spar::proj_putp3, putp3_spheroid, putp3_spheroid)
-        BOOST_GEOMETRY_PROJECTIONS_DETAIL_STATIC_PROJECTION(srs::spar::proj_putp3p, putp3p_spheroid, putp3p_spheroid)
+        BOOST_GEOMETRY_PROJECTIONS_DETAIL_STATIC_PROJECTION_FI(srs::spar::proj_putp3, putp3_spheroid)
+        BOOST_GEOMETRY_PROJECTIONS_DETAIL_STATIC_PROJECTION_FI(srs::spar::proj_putp3p, putp3p_spheroid)
 
         // Factory entry(s)
         BOOST_GEOMETRY_PROJECTIONS_DETAIL_FACTORY_ENTRY_FI(putp3_entry, putp3_spheroid)