Back to home page

EIC code displayed by LXR

 
 

    


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

0001 // Boost.Geometry (aka GGL, Generic Geometry Library)
0002 
0003 // Copyright (c) 2007-2012 Barend Gehrels, Amsterdam, the Netherlands.
0004 
0005 // This file was modified by Oracle on 2014.
0006 // Modifications copyright (c) 2014, Oracle and/or its affiliates.
0007 
0008 // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
0009 
0010 // Use, modification and distribution is subject to the Boost Software License,
0011 // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
0012 // http://www.boost.org/LICENSE_1_0.txt)
0013 
0014 #ifndef BOOST_GEOMETRY_ALGORITHMS_DETAIL_INTERSECTION_BOX_BOX_HPP
0015 #define BOOST_GEOMETRY_ALGORITHMS_DETAIL_INTERSECTION_BOX_BOX_HPP
0016 
0017 
0018 #include <boost/geometry/algorithms/detail/intersection/interface.hpp>
0019 #include <boost/geometry/algorithms/detail/intersection/box_box_implementation.hpp>
0020 
0021 
0022 namespace boost { namespace geometry
0023 {
0024 
0025 
0026 #ifndef DOXYGEN_NO_DISPATCH
0027 namespace dispatch
0028 {
0029 
0030 
0031 template
0032 <
0033     typename Box1, typename Box2, bool Reverse
0034 >
0035 struct intersection
0036     <
0037         Box1, Box2,
0038         box_tag, box_tag,
0039         Reverse
0040     > : public detail::intersection::intersection_box_box
0041             <
0042                 0, geometry::dimension<Box1>::value
0043             >
0044 {};
0045 
0046 
0047 } // namespace dispatch
0048 #endif // DOXYGEN_NO_DISPATCH
0049 
0050 
0051 }} // namespace boost::geometry
0052 
0053 
0054 #endif // BOOST_GEOMETRY_ALGORITHMS_DETAIL_INTERSECTION_BOX_BOX_HPP