Chris@102
|
1 // Boost.Geometry (aka GGL, Generic Geometry Library)
|
Chris@102
|
2
|
Chris@102
|
3 // Copyright (c) 2007-2014 Barend Gehrels, Amsterdam, the Netherlands.
|
Chris@102
|
4 // Copyright (c) 2008-2014 Bruno Lalande, Paris, France.
|
Chris@102
|
5 // Copyright (c) 2009-2014 Mateusz Loskot, London, UK.
|
Chris@102
|
6 // Copyright (c) 2013-2014 Adam Wulkiewicz, Lodz, Poland.
|
Chris@102
|
7
|
Chris@102
|
8 // This file was modified by Oracle on 2014.
|
Chris@102
|
9 // Modifications copyright (c) 2014, Oracle and/or its affiliates.
|
Chris@102
|
10
|
Chris@102
|
11 // Contributed and/or modified by Menelaos Karavelas, on behalf of Oracle
|
Chris@102
|
12
|
Chris@102
|
13 // Parts of Boost.Geometry are redesigned from Geodan's Geographic Library
|
Chris@102
|
14 // (geolib/GGL), copyright (c) 1995-2010 Geodan, Amsterdam, the Netherlands.
|
Chris@102
|
15
|
Chris@102
|
16 // Use, modification and distribution is subject to the Boost Software License,
|
Chris@102
|
17 // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
Chris@102
|
18 // http://www.boost.org/LICENSE_1_0.txt)
|
Chris@102
|
19
|
Chris@102
|
20 #ifndef BOOST_GEOMETRY_ALGORITHMS_DETAIL_DISTANCE_IMPLEMENTATION_HPP
|
Chris@102
|
21 #define BOOST_GEOMETRY_ALGORITHMS_DETAIL_DISTANCE_IMPLEMENTATION_HPP
|
Chris@102
|
22
|
Chris@102
|
23 // the implementation details
|
Chris@102
|
24 #include <boost/geometry/algorithms/detail/distance/point_to_geometry.hpp>
|
Chris@102
|
25 #include <boost/geometry/algorithms/detail/distance/multipoint_to_geometry.hpp>
|
Chris@102
|
26 #include <boost/geometry/algorithms/detail/distance/linear_to_linear.hpp>
|
Chris@102
|
27 #include <boost/geometry/algorithms/detail/distance/linear_or_areal_to_areal.hpp>
|
Chris@102
|
28 #include <boost/geometry/algorithms/detail/distance/geometry_to_segment_or_box.hpp>
|
Chris@102
|
29 #include <boost/geometry/algorithms/detail/distance/segment_to_segment.hpp>
|
Chris@102
|
30 #include <boost/geometry/algorithms/detail/distance/segment_to_box.hpp>
|
Chris@102
|
31 #include <boost/geometry/algorithms/detail/distance/box_to_box.hpp>
|
Chris@102
|
32
|
Chris@102
|
33 #include <boost/geometry/algorithms/detail/distance/backward_compatibility.hpp>
|
Chris@102
|
34
|
Chris@102
|
35 #endif // BOOST_GEOMETRY_ALGORITHMS_DETAIL_DISTANCE_IMPLEMENTATION_HPP
|