diff options
author | Lorry Tar Creator <lorry-tar-importer@baserock.org> | 2015-04-08 03:09:47 +0000 |
---|---|---|
committer | <> | 2015-05-05 14:37:32 +0000 |
commit | f2541bb90af059680aa7036f315f052175999355 (patch) | |
tree | a5b214744b256f07e1dc2bd7273035a7808c659f /libs/geometry/test/algorithms/relational_operations/test_overlaps.hpp | |
parent | ed232fdd34968697a68783b3195b1da4226915b5 (diff) | |
download | boost-tarball-master.tar.gz |
Imported from /home/lorry/working-area/delta_boost-tarball/boost_1_58_0.tar.bz2.HEADboost_1_58_0master
Diffstat (limited to 'libs/geometry/test/algorithms/relational_operations/test_overlaps.hpp')
-rw-r--r-- | libs/geometry/test/algorithms/relational_operations/test_overlaps.hpp | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/libs/geometry/test/algorithms/relational_operations/test_overlaps.hpp b/libs/geometry/test/algorithms/relational_operations/test_overlaps.hpp new file mode 100644 index 000000000..862fe7389 --- /dev/null +++ b/libs/geometry/test/algorithms/relational_operations/test_overlaps.hpp @@ -0,0 +1,52 @@ +// Generic Geometry2 Library +// Unit Test + +// Copyright (c) 2007-2012 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_OVERLAPS_HPP +#define BOOST_GEOMETRY_TEST_OVERLAPS_HPP + + +#include <geometry_test_common.hpp> + +#include <boost/geometry/core/ring_type.hpp> +#include <boost/geometry/algorithms/overlaps.hpp> +#include <boost/geometry/strategies/strategies.hpp> +#include <boost/geometry/geometries/geometries.hpp> +#include <boost/geometry/geometries/point_xy.hpp> + +#include <boost/geometry/io/wkt/read.hpp> + + +template <typename Geometry1, typename Geometry2> +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::overlaps(geometry1, geometry2); + + BOOST_CHECK_MESSAGE(detected == expected, + "overlaps: " << wkt1 + << " with " << wkt2 + << " -> Expected: " << expected + << " detected: " << detected); + + detected = bg::overlaps(geometry2, geometry1); + + BOOST_CHECK_MESSAGE(detected == expected, + "overlaps: " << wkt1 + << " with " << wkt2 + << " -> Expected: " << expected + << " detected: " << detected); +} + + +#endif |