File indexing completed on 2025-01-18 09:35:25
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011 #ifndef BOOST_GEOMETRY_FORMULAS_RESULT_DIRECT_HPP
0012 #define BOOST_GEOMETRY_FORMULAS_RESULT_DIRECT_HPP
0013
0014
0015 namespace boost { namespace geometry { namespace formula
0016 {
0017
0018 template <typename T>
0019 struct result_direct
0020 {
0021 result_direct()
0022 : lon2(0)
0023 , lat2(0)
0024 , reverse_azimuth(0)
0025 , reduced_length(0)
0026 , geodesic_scale(1)
0027 {}
0028
0029 T lon2;
0030 T lat2;
0031 T reverse_azimuth;
0032 T reduced_length;
0033 T geodesic_scale;
0034 };
0035
0036 }}}
0037
0038
0039 #endif