File indexing completed on 2025-01-18 09:35:05
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013 #ifndef BOOST_GEOMETRY_ALGORITHMS_DETAIL_ENVELOPE_MULTIPOINT_HPP
0014 #define BOOST_GEOMETRY_ALGORITHMS_DETAIL_ENVELOPE_MULTIPOINT_HPP
0015
0016 #include <boost/geometry/core/tags.hpp>
0017
0018 #include <boost/geometry/algorithms/dispatch/envelope.hpp>
0019
0020 namespace boost { namespace geometry
0021 {
0022
0023
0024 #ifndef DOXYGEN_NO_DISPATCH
0025 namespace dispatch
0026 {
0027
0028
0029 template <typename MultiPoint>
0030 struct envelope<MultiPoint, multi_point_tag>
0031 {
0032 template <typename Box, typename Strategy>
0033 static inline void apply(MultiPoint const& multipoint, Box& mbr, Strategy const& strategy)
0034 {
0035
0036 using strategy_t = decltype(strategy.envelope(multipoint, mbr));
0037 strategy_t::apply(multipoint, mbr);
0038 }
0039 };
0040
0041
0042 }
0043 #endif
0044
0045 }}
0046
0047 #endif