29 lines
1.5 KiB
C++
29 lines
1.5 KiB
C++
// Boost.Geometry
|
|
|
|
// Copyright (c) 2021, Oracle and/or its affiliates.
|
|
|
|
// Contributed and/or modified by Vissarion Fysikopoulos, on behalf of Oracle
|
|
|
|
// Licensed under the Boost Software License version 1.0.
|
|
// http://www.boost.org/users/license.html
|
|
|
|
#ifndef BOOST_GEOMETRY_ALGORITHMS_DETAIL_CLOSEST_POINTS_IMPLEMENTATION_HPP
|
|
#define BOOST_GEOMETRY_ALGORITHMS_DETAIL_CLOSEST_POINTS_IMPLEMENTATION_HPP
|
|
|
|
#include <boost/geometry/algorithms/detail/distance/implementation.hpp>
|
|
#include <boost/geometry/algorithms/detail/closest_points/point_to_geometry.hpp>
|
|
#include <boost/geometry/algorithms/detail/closest_points/multipoint_to_geometry.hpp>
|
|
#include <boost/geometry/algorithms/detail/closest_points/linear_to_linear.hpp>
|
|
#include <boost/geometry/algorithms/detail/closest_points/linear_or_areal_to_areal.hpp>
|
|
//#include <boost/geometry/algorithms/detail/closest_points/linear_to_box.hpp>
|
|
//#include <boost/geometry/algorithms/detail/closest_points/geometry_to_segment_or_box.hpp>
|
|
#include <boost/geometry/algorithms/detail/closest_points/segment_to_segment.hpp>
|
|
//#include <boost/geometry/algorithms/detail/closest_points/segment_to_box.hpp>
|
|
//#include <boost/geometry/algorithms/detail/closest_points/box_to_box.hpp>
|
|
|
|
#include <boost/geometry/strategies/closest_points/cartesian.hpp>
|
|
#include <boost/geometry/strategies/closest_points/geographic.hpp>
|
|
#include <boost/geometry/strategies/closest_points/spherical.hpp>
|
|
|
|
#endif // BOOST_GEOMETRY_ALGORITHMS_DETAIL_CLOSEST_POINTS_IMPLEMENTATION_HPP
|