/usr/include/boost/geometry/algorithms/detail/relate
NameSizeModeActions
areal_areal.hpp338380644editdlrm
boundary_checker.hpp60830644editdlrm
de9im.hpp118950644editdlrm
follow_helpers.hpp133700644editdlrm
implementation.hpp45200644editdlrm
interface.hpp131210644editdlrm
linear_areal.hpp638220644editdlrm
linear_linear.hpp354060644editdlrm
multi_point_geometry.hpp232420644editdlrm
point_geometry.hpp70080644editdlrm
point_point.hpp94460644editdlrm
relate_impl.hpp29680644editdlrm
result.hpp364410644editdlrm
topology_check.hpp96560644editdlrm
turns.hpp116420644editdlrm
Edit: /usr/include/boost/geometry/algorithms/detail/relate/implementation.hpp (4520B)
// Boost.Geometry (aka GGL, Generic Geometry Library) // Copyright (c) 2007-2012 Barend Gehrels, Amsterdam, the Netherlands. // This file was modified by Oracle on 2013, 2014, 2015, 2017. // Modifications copyright (c) 2013-2017 Oracle and/or its affiliates. // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle // Use, modification and distribution is subject to the Boost Software License, // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_GEOMETRY_ALGORITHMS_DETAIL_RELATE_IMPLEMENTATION_HPP #define BOOST_GEOMETRY_ALGORITHMS_DETAIL_RELATE_IMPLEMENTATION_HPP #include #include #include #include #include #include #include #include #include #include namespace boost { namespace geometry { #ifndef DOXYGEN_NO_DISPATCH namespace dispatch { template struct relate : detail::relate::point_point {}; template struct relate : detail::relate::point_multipoint {}; template struct relate : detail::relate::multipoint_point {}; template struct relate : detail::relate::multipoint_multipoint {}; // TODO - for now commented out because before implementing it we must consider: // 1. how the Box degenerated to a Point should be treated // 2. what should be the definition of a Box degenerated to a Point // 3. what fields should the matrix/mask contain for dimension > 2 and dimension > 9 // //template //struct relate // : detail::relate::point_box //{}; // //template //struct relate // : detail::relate::box_point //{}; template struct relate : detail::relate::point_geometry {}; template struct relate : detail::relate::geometry_point {}; template struct relate : detail::relate::multi_point_geometry {}; template struct relate : detail::relate::geometry_multi_point {}; template struct relate : detail::relate::linear_linear {}; template struct relate : detail::relate::linear_areal {}; template struct relate : detail::relate::areal_linear {}; template struct relate : detail::relate::areal_areal {}; } // namespace dispatch #endif // DOXYGEN_NO_DISPATCH }} // namespace boost::geometry #endif // BOOST_GEOMETRY_ALGORITHMS_DETAIL_RELATE_IMPLEMENTATION_HPP