123456789101112131415161718192021222324252627282930313233343536373839 |
- #ifndef BOOST_GEOMETRY_FORMULAS_RESULT_INVERSE_HPP
- #define BOOST_GEOMETRY_FORMULAS_RESULT_INVERSE_HPP
- namespace boost { namespace geometry { namespace formula
- {
- template <typename T>
- struct result_inverse
- {
- result_inverse()
- : distance(0)
- , azimuth(0)
- , reverse_azimuth(0)
- , reduced_length(0)
- , geodesic_scale(1)
- {}
- T distance;
- T azimuth;
- T reverse_azimuth;
- T reduced_length;
- T geodesic_scale;
- };
- }}}
- #endif
|