File indexing completed on 2025-01-18 09:35:02
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef BOOST_GEOMETRY_ALGORITHMS_DETAIL_CLOSEST_POINTS_IMPLEMENTATION_HPP
0011 #define BOOST_GEOMETRY_ALGORITHMS_DETAIL_CLOSEST_POINTS_IMPLEMENTATION_HPP
0012
0013 #include <boost/geometry/algorithms/detail/distance/implementation.hpp>
0014 #include <boost/geometry/algorithms/detail/closest_points/point_to_geometry.hpp>
0015 #include <boost/geometry/algorithms/detail/closest_points/multipoint_to_geometry.hpp>
0016 #include <boost/geometry/algorithms/detail/closest_points/linear_to_linear.hpp>
0017 #include <boost/geometry/algorithms/detail/closest_points/linear_or_areal_to_areal.hpp>
0018
0019
0020 #include <boost/geometry/algorithms/detail/closest_points/segment_to_segment.hpp>
0021
0022
0023
0024 #include <boost/geometry/strategies/closest_points/cartesian.hpp>
0025 #include <boost/geometry/strategies/closest_points/geographic.hpp>
0026 #include <boost/geometry/strategies/closest_points/spherical.hpp>
0027
0028 #endif