Imported Upstream version 1.72.0
[platform/upstream/boost.git] / boost / geometry / srs / projections / proj / wink1.hpp
index d05f945..c3c3998 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,
@@ -61,20 +61,14 @@ namespace projections
                 T    cosphi1;
             };
 
-            // template class, using CRTP to implement forward/inverse
             template <typename T, typename Parameters>
             struct base_wink1_spheroid
-                : public base_t_fi<base_wink1_spheroid<T, Parameters>, T, Parameters>
             {
-
                 par_wink1<T> m_proj_parm;
 
-                inline base_wink1_spheroid(const Parameters& par)
-                    : base_t_fi<base_wink1_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 = .5 * lp_lon * (this->m_proj_parm.cosphi1 + cos(lp_lat));
                     xy_y = lp_lat;
@@ -82,7 +76,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;
                     lp_lon = 2. * xy_x / (this->m_proj_parm.cosphi1 + cos(lp_lat));
@@ -124,10 +118,9 @@ namespace projections
     struct wink1_spheroid : public detail::wink1::base_wink1_spheroid<T, Parameters>
     {
         template <typename Params>
-        inline wink1_spheroid(Params const& params, Parameters const& par)
-            : detail::wink1::base_wink1_spheroid<T, Parameters>(par)
+        inline wink1_spheroid(Params const& params, Parameters & par)
         {
-            detail::wink1::setup_wink1(params, this->m_par, this->m_proj_parm);
+            detail::wink1::setup_wink1(params, par, this->m_proj_parm);
         }
     };
 
@@ -136,7 +129,7 @@ namespace projections
     {
 
         // Static projection
-        BOOST_GEOMETRY_PROJECTIONS_DETAIL_STATIC_PROJECTION(srs::spar::proj_wink1, wink1_spheroid, wink1_spheroid)
+        BOOST_GEOMETRY_PROJECTIONS_DETAIL_STATIC_PROJECTION_FI(srs::spar::proj_wink1, wink1_spheroid)
 
         // Factory entry(s)
         BOOST_GEOMETRY_PROJECTIONS_DETAIL_FACTORY_ENTRY_FI(wink1_entry, wink1_spheroid)