// Boost.Geometry (aka GGL, Generic Geometry Library) // Copyright (c) 2007-2014 Barend Gehrels, Amsterdam, the Netherlands. // Copyright (c) 2008-2014 Bruno Lalande, Paris, France. // Copyright (c) 2009-2014 Mateusz Loskot, London, UK. // This file was modified by Oracle on 2014. // Modifications copyright (c) 2014, Oracle and/or its affiliates. // Contributed and/or modified by Menelaos Karavelas, on behalf of Oracle // Parts of Boost.Geometry are redesigned from Geodan's Geographic Library // (geolib/GGL), copyright (c) 1995-2010 Geodan, Amsterdam, the Netherlands. // Use, modification and distribution is subject to the Boost Software License, // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_GEOMETRY_ALGORITHMS_PERIMETER_HPP #define BOOST_GEOMETRY_ALGORITHMS_PERIMETER_HPP #include #include #include #include #include #include #include #include // #include #include #include #include #include #include #include namespace boost { namespace geometry { #ifndef DOXYGEN_NO_DISPATCH namespace dispatch { // Default perimeter is 0.0, specializations implement calculated values template ::type> struct perimeter : detail::calculate_null { typedef typename default_length_result::type return_type; template static inline return_type apply(Geometry const& geometry, Strategy const& strategy) { return calculate_null::apply(geometry, strategy); } }; template struct perimeter : detail::length::range_length < Geometry, closure::value > {}; template struct perimeter : detail::calculate_polygon_sum { typedef typename default_length_result::type return_type; typedef detail::length::range_length < typename ring_type::type, closure::value > policy; template static inline return_type apply(Polygon const& polygon, Strategy const& strategy) { return calculate_polygon_sum::apply(polygon, strategy); } }; template struct perimeter : detail::multi_sum { typedef typename default_length_result::type return_type; template static inline return_type apply(MultiPolygon const& multi, Strategy const& strategy) { return multi_sum::apply < return_type, perimeter::type> >(multi, strategy); } }; // box,n-sphere: to be implemented } // namespace dispatch #endif // DOXYGEN_NO_DISPATCH namespace resolve_strategy { struct perimeter { template static inline typename default_length_result::type apply(Geometry const& geometry, Strategy const& strategy) { return dispatch::perimeter::apply(geometry, strategy); } template static inline typename default_length_result::type apply(Geometry const& geometry, default_strategy) { typedef typename strategy::distance::services::default_strategy < point_tag, point_tag, typename point_type::type >::type strategy_type; return dispatch::perimeter::apply(geometry, strategy_type()); } }; } // namespace resolve_strategy namespace resolve_variant { template struct perimeter { template static inline typename default_length_result::type apply(Geometry const& geometry, Strategy const& strategy) { concepts::check(); return resolve_strategy::perimeter::apply(geometry, strategy); } }; template struct perimeter > { typedef typename default_length_result < boost::variant >::type result_type; template struct visitor: boost::static_visitor { Strategy const& m_strategy; visitor(Strategy const& strategy): m_strategy(strategy) {} template typename default_length_result::type operator()(Geometry const& geometry) const { return perimeter::apply(geometry, m_strategy); } }; template static inline result_type apply(boost::variant const& geometry, Strategy const& strategy) { return boost::apply_visitor(visitor(strategy), geometry); } }; } // namespace resolve_variant /*! \brief \brief_calc{perimeter} \ingroup perimeter \details The function perimeter returns the perimeter of a geometry, using the default distance-calculation-strategy \tparam Geometry \tparam_geometry \param geometry \param_geometry \return \return_calc{perimeter} \qbk{[include reference/algorithms/perimeter.qbk]} */ template inline typename default_length_result::type perimeter( Geometry const& geometry) { // detail::throw_on_empty_input(geometry); return resolve_variant::perimeter::apply(geometry, default_strategy()); } /*! \brief \brief_calc{perimeter} \brief_strategy \ingroup perimeter \details The function perimeter returns the perimeter of a geometry, using specified strategy \tparam Geometry \tparam_geometry \tparam Strategy \tparam_strategy{distance} \param geometry \param_geometry \param strategy strategy to be used for distance calculations. \return \return_calc{perimeter} \qbk{distinguish,with strategy} \qbk{[include reference/algorithms/perimeter.qbk]} */ template inline typename default_length_result::type perimeter( Geometry const& geometry, Strategy const& strategy) { // detail::throw_on_empty_input(geometry); return resolve_variant::perimeter::apply(geometry, strategy); } }} // namespace boost::geometry #endif // BOOST_GEOMETRY_ALGORITHMS_PERIMETER_HPP