41 lines
1.3 KiB
C++
41 lines
1.3 KiB
C++
// Boost.Geometry (aka GGL, Generic Geometry Library)
|
|
// Unit Test
|
|
|
|
// Copyright (c) 2007-2015 Barend Gehrels, Amsterdam, the Netherlands.
|
|
// Copyright (c) 2008-2015 Bruno Lalande, Paris, France.
|
|
// 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 GEOMETRY_TEST_MULTI_OVERLAY_COMMON_HPP
|
|
#define GEOMETRY_TEST_MULTI_OVERLAY_COMMON_HPP
|
|
|
|
|
|
#include <boost/geometry/geometries/multi_linestring.hpp>
|
|
#include <boost/geometry/geometries/multi_polygon.hpp>
|
|
|
|
#include <boost/geometry/io/wkt/read.hpp>
|
|
//#include <boost/geometry/io/svg/write.hpp>
|
|
|
|
|
|
|
|
template <typename P, typename Functor, typename T>
|
|
void test_all(std::vector<T> const& expected, double precision = 0.01)
|
|
{
|
|
typename boost::range_const_iterator<std::vector<T> >::type iterator
|
|
= boost::begin(expected);
|
|
|
|
typedef bg::model::multi_polygon<bg::model::polygon<P> > mp;
|
|
typedef bg::model::box<P> box;
|
|
|
|
BOOST_ASSERT(iterator != boost::end(expected));
|
|
test_overlay<mp, mp, Functor>("1", *iterator,
|
|
"MULTIPOLYGON(((0 1,2 5,5 3,0 1)),((1 1,5 2,5 0,1 1)))",
|
|
"MULTIPOLYGON(((3 0,0 3,4 5,3 0)))", precision);
|
|
iterator++;
|
|
}
|
|
|
|
|
|
#endif // GEOMETRY_TEST_MULTI_OVERLAY_COMMON_HPP
|