implementation.hpp 1.5 KB

12345678910111213141516171819202122232425262728
  1. // Boost.Geometry
  2. // Copyright (c) 2021, Oracle and/or its affiliates.
  3. // Contributed and/or modified by Vissarion Fysikopoulos, on behalf of Oracle
  4. // Licensed under the Boost Software License version 1.0.
  5. // http://www.boost.org/users/license.html
  6. #ifndef BOOST_GEOMETRY_ALGORITHMS_DETAIL_CLOSEST_POINTS_IMPLEMENTATION_HPP
  7. #define BOOST_GEOMETRY_ALGORITHMS_DETAIL_CLOSEST_POINTS_IMPLEMENTATION_HPP
  8. #include <boost/geometry/algorithms/detail/distance/implementation.hpp>
  9. #include <boost/geometry/algorithms/detail/closest_points/point_to_geometry.hpp>
  10. #include <boost/geometry/algorithms/detail/closest_points/multipoint_to_geometry.hpp>
  11. #include <boost/geometry/algorithms/detail/closest_points/linear_to_linear.hpp>
  12. #include <boost/geometry/algorithms/detail/closest_points/linear_or_areal_to_areal.hpp>
  13. //#include <boost/geometry/algorithms/detail/closest_points/linear_to_box.hpp>
  14. //#include <boost/geometry/algorithms/detail/closest_points/geometry_to_segment_or_box.hpp>
  15. #include <boost/geometry/algorithms/detail/closest_points/segment_to_segment.hpp>
  16. //#include <boost/geometry/algorithms/detail/closest_points/segment_to_box.hpp>
  17. //#include <boost/geometry/algorithms/detail/closest_points/box_to_box.hpp>
  18. #include <boost/geometry/strategies/closest_points/cartesian.hpp>
  19. #include <boost/geometry/strategies/closest_points/geographic.hpp>
  20. #include <boost/geometry/strategies/closest_points/spherical.hpp>
  21. #endif // BOOST_GEOMETRY_ALGORITHMS_DETAIL_CLOSEST_POINTS_IMPLEMENTATION_HPP