// Boost.Geometry (aka GGL, Generic Geometry Library) // Unit Test // Copyright (c) 2007-2011 Barend Gehrels, Amsterdam, the Netherlands. // 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_INTERSECTS_HPP #define BOOST_GEOMETRY_TEST_INTERSECTS_HPP #include #include #include #include #include #include #include template void test_geometry(std::string const& wkt1, std::string const& wkt2, bool expected) { Geometry1 geometry1; Geometry2 geometry2; bg::read_wkt(wkt1, geometry1); bg::read_wkt(wkt2, geometry2); bool detected = bg::intersects(geometry1, geometry2); BOOST_CHECK_MESSAGE(detected == expected, "intersects: " << wkt1 << " with " << wkt2 << " -> Expected: " << expected << " detected: " << detected); } template void test_self_intersects(std::string const& wkt, bool expected) { Geometry geometry; bg::read_wkt(wkt, geometry); bool detected = bg::intersects(geometry); BOOST_CHECK_MESSAGE(detected == expected, "intersects: " << wkt << " -> Expected: " << expected << " detected: " << detected); } #endif