File indexing completed on 2025-01-18 09:35:05
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020 #ifndef BOOST_GEOMETRY_ALGORITHMS_DETAIL_ENVELOPE_IMPLEMENTATION_HPP
0021 #define BOOST_GEOMETRY_ALGORITHMS_DETAIL_ENVELOPE_IMPLEMENTATION_HPP
0022
0023 #include <boost/geometry/core/exterior_ring.hpp>
0024 #include <boost/geometry/core/interior_rings.hpp>
0025 #include <boost/geometry/core/tags.hpp>
0026
0027 #include <boost/geometry/algorithms/is_empty.hpp>
0028
0029 #include <boost/geometry/algorithms/detail/envelope/areal.hpp>
0030 #include <boost/geometry/algorithms/detail/envelope/box.hpp>
0031 #include <boost/geometry/algorithms/detail/envelope/geometry_collection.hpp>
0032 #include <boost/geometry/algorithms/detail/envelope/linear.hpp>
0033 #include <boost/geometry/algorithms/detail/envelope/multipoint.hpp>
0034 #include <boost/geometry/algorithms/detail/envelope/point.hpp>
0035 #include <boost/geometry/algorithms/detail/envelope/range.hpp>
0036 #include <boost/geometry/algorithms/detail/envelope/segment.hpp>
0037
0038 #include <boost/geometry/algorithms/dispatch/envelope.hpp>
0039
0040 #include <boost/geometry/strategies/envelope/cartesian.hpp>
0041 #include <boost/geometry/strategies/envelope/geographic.hpp>
0042 #include <boost/geometry/strategies/envelope/spherical.hpp>
0043
0044 #endif