Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:35:25

0001 // Boost.Geometry
0002 
0003 // Copyright (c) 2015-2016 Oracle and/or its affiliates.
0004 
0005 // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
0006 
0007 // Use, modification and distribution is subject to the Boost Software License,
0008 // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
0009 // http://www.boost.org/LICENSE_1_0.txt)
0010 
0011 #ifndef BOOST_GEOMETRY_FORMULAS_RESULT_INVERSE_HPP
0012 #define BOOST_GEOMETRY_FORMULAS_RESULT_INVERSE_HPP
0013 
0014 
0015 namespace boost { namespace geometry { namespace formula
0016 {
0017 
0018 template <typename T>
0019 struct result_inverse
0020 {
0021     result_inverse()
0022         : distance(0)
0023         , azimuth(0)
0024         , reverse_azimuth(0)
0025         , reduced_length(0)
0026         , geodesic_scale(1)
0027     {}
0028 
0029     T distance;
0030     T azimuth;
0031     T reverse_azimuth;
0032     T reduced_length;
0033     T geodesic_scale;
0034 };
0035 
0036 }}} // namespace boost::geometry::formula
0037 
0038 
0039 #endif // BOOST_GEOMETRY_FORMULAS_RESULT_INVERSE_HPP