annotate DEPENDENCIES/generic/include/boost/geometry/algorithms/detail/disjoint/implementation.hpp @ 125:34e428693f5d vext

Vext -> Repoint
author Chris Cannam
date Thu, 14 Jun 2018 11:15:39 +0100
parents f46d142149f5
children
rev   line source
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 2013-2014.
Chris@102 9 // Modifications copyright (c) 2013-2014, Oracle and/or its affiliates.
Chris@102 10
Chris@102 11 // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
Chris@102 12 // Contributed and/or modified by Menelaos Karavelas, on behalf of Oracle
Chris@102 13
Chris@102 14 // Parts of Boost.Geometry are redesigned from Geodan's Geographic Library
Chris@102 15 // (geolib/GGL), copyright (c) 1995-2010 Geodan, Amsterdam, the Netherlands.
Chris@102 16
Chris@102 17 // Use, modification and distribution is subject to the Boost Software License,
Chris@102 18 // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
Chris@102 19 // http://www.boost.org/LICENSE_1_0.txt)
Chris@102 20
Chris@102 21 #ifndef BOOST_GEOMETRY_ALGORITHMS_DETAIL_DISJOINT_IMPLEMENTATION_HPP
Chris@102 22 #define BOOST_GEOMETRY_ALGORITHMS_DETAIL_DISJOINT_IMPLEMENTATION_HPP
Chris@102 23
Chris@102 24
Chris@102 25 #include <boost/geometry/algorithms/detail/disjoint/areal_areal.hpp>
Chris@102 26 #include <boost/geometry/algorithms/detail/disjoint/linear_areal.hpp>
Chris@102 27 #include <boost/geometry/algorithms/detail/disjoint/linear_linear.hpp>
Chris@102 28 #include <boost/geometry/algorithms/detail/disjoint/point_geometry.hpp>
Chris@102 29 #include <boost/geometry/algorithms/detail/disjoint/multipoint_geometry.hpp>
Chris@102 30 #include <boost/geometry/algorithms/detail/disjoint/point_point.hpp>
Chris@102 31 #include <boost/geometry/algorithms/detail/disjoint/point_box.hpp>
Chris@102 32 #include <boost/geometry/algorithms/detail/disjoint/box_box.hpp>
Chris@102 33 #include <boost/geometry/algorithms/detail/disjoint/segment_box.hpp>
Chris@102 34 #include <boost/geometry/algorithms/detail/disjoint/linear_segment_or_box.hpp>
Chris@102 35
Chris@102 36
Chris@102 37 #endif // BOOST_GEOMETRY_ALGORITHMS_DETAIL_DISJOINT_IMPLEMENTATION_HPP