// Boost.Geometry (aka GGL, Generic Geometry Library) // Unit Test // Copyright (c) 2007-2012 Barend Gehrels, Amsterdam, the Netherlands. // This file was modified by Oracle on 2013. // Modifications copyright (c) 2013, Oracle and/or its affiliates. // 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_TEST_TOUCHES_HPP #define BOOST_GEOMETRY_TEST_TOUCHES_HPP #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include template void check_touches(Geometry1 const& geometry1, Geometry2 const& geometry2, std::string const& wkt1, std::string const& wkt2, bool expected) { bool detected = bg::touches(geometry1, geometry2); BOOST_CHECK_MESSAGE(detected == expected, "touches: " << wkt1 << " with " << wkt2 << " -> Expected: " << expected << " detected: " << detected); detected = bg::touches(geometry2, geometry1); BOOST_CHECK_MESSAGE(detected == expected, "touches: " << wkt2 << " with " << wkt1 << " -> Expected: " << expected << " detected: " << detected); } template void test_touches(std::string const& wkt1, std::string const& wkt2, bool expected) { Geometry1 geometry1; Geometry2 geometry2; bg::read_wkt(wkt1, geometry1); bg::read_wkt(wkt2, geometry2); boost::variant v1(geometry1); boost::variant v2(geometry2); check_touches(geometry1, geometry2, wkt1, wkt2, expected); check_touches(v1, geometry2, wkt1, wkt2, expected); check_touches(geometry1, v2, wkt1, wkt2, expected); check_touches(v1, v2, wkt1, wkt2, expected); } template void check_self_touches(Geometry const& geometry, std::string const& wkt, bool expected) { bool detected = bg::touches(geometry); BOOST_CHECK_MESSAGE(detected == expected, "touches: " << wkt << " -> Expected: " << expected << " detected: " << detected); } template void test_self_touches(std::string const& wkt, bool expected) { Geometry geometry; bg::read_wkt(wkt, geometry); boost::variant v(geometry); check_self_touches(geometry, wkt, expected); check_self_touches(v, wkt, expected); } #endif