Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:35:02

0001 // Boost.Geometry
0002 
0003 // Copyright (c) 2021, Oracle and/or its affiliates.
0004 
0005 // Contributed and/or modified by Vissarion Fysikopoulos, on behalf of Oracle
0006 
0007 // Licensed under the Boost Software License version 1.0.
0008 // http://www.boost.org/users/license.html
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 //#include <boost/geometry/algorithms/detail/closest_points/linear_to_box.hpp>
0019 //#include <boost/geometry/algorithms/detail/closest_points/geometry_to_segment_or_box.hpp>
0020 #include <boost/geometry/algorithms/detail/closest_points/segment_to_segment.hpp>
0021 //#include <boost/geometry/algorithms/detail/closest_points/segment_to_box.hpp>
0022 //#include <boost/geometry/algorithms/detail/closest_points/box_to_box.hpp>
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 // BOOST_GEOMETRY_ALGORITHMS_DETAIL_CLOSEST_POINTS_IMPLEMENTATION_HPP