Barend Gehrels e71fb07566 Assemble/traverse/enrich: complete update for handling self tangencies
-> added many testcases

Various updates in testcases for support of open polygons
recursive_boxes.cpp, added triangles as well (dropped corner)

[SVN r66450]
2010-11-08 10:32:23 +00:00

126 lines
3.0 KiB
C++

// Boost.Geometry (aka GGL, Generic Geometry Library) test file
//
// Copyright Barend Gehrels 2007-2009, Geodan, Amsterdam, the Netherlands
// Copyright Bruno Lalande 2008, 2009
// 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)
#include <geometry_test_common.hpp>
#include <boost/geometry/algorithms/make.hpp>
#include <boost/geometry/extensions/gis/io/wkt/write_wkt.hpp>
#include <boost/geometry/geometries/geometries.hpp>
#include <boost/geometry/geometries/adapted/c_array_cartesian.hpp>
#include <boost/geometry/geometries/adapted/tuple_cartesian.hpp>
#include <test_common/test_point.hpp>
using namespace boost::geometry;
template <typename T, typename P>
void test_point_2d()
{
P p = make<P>((T) 123, (T) 456);
BOOST_CHECK_CLOSE( ((double) get<0>(p)), (double) 123, 1.0e-6);
BOOST_CHECK_CLOSE( ((double) get<1>(p)), (double) 456, 1.0e-6);
}
template <typename T, typename P>
void test_point_3d()
{
P p = make<P>((T) 123, (T) 456, (T) 789);
BOOST_CHECK_CLOSE( ((double) get<0>(p)), (double) 123, 1.0e-6);
BOOST_CHECK_CLOSE( ((double) get<1>(p)), (double) 456, 1.0e-6);
BOOST_CHECK_CLOSE( ((double) get<2>(p)), (double) 789, 1.0e-6);
}
template <typename T, typename P>
void test_box_2d()
{
typedef box<P> B;
B b = make<B>((T) 123, (T) 456, (T) 789, (T) 1011);
BOOST_CHECK_CLOSE( ((double) get<min_corner, 0>(b)), (double) 123, 1.0e-6);
BOOST_CHECK_CLOSE( ((double) get<min_corner, 1>(b)), (double) 456, 1.0e-6);
BOOST_CHECK_CLOSE( ((double) get<max_corner, 0>(b)), (double) 789, 1.0e-6);
BOOST_CHECK_CLOSE( ((double) get<max_corner, 1>(b)), (double) 1011, 1.0e-6);
b = make_inverse<B>();
}
template <typename T, typename P>
void test_linestring_2d()
{
typedef linestring<P> L;
T coors[][2] = {{1,2}, {3,4}};
L line = make<L>(coors);
BOOST_CHECK_EQUAL(line.size(), 2u);
}
template <typename T, typename P>
void test_linestring_3d()
{
typedef linestring<P> L;
T coors[][3] = {{1,2,3}, {4,5,6}};
L line = make<L>(coors);
BOOST_CHECK_EQUAL(line.size(), 2u);
//std::cout << dsv(line) << std::endl;
}
template <typename T, typename P>
void test_2d_t()
{
test_point_2d<T, P>();
test_box_2d<T, P>();
test_linestring_2d<T, P>();
}
template <typename P>
void test_2d()
{
test_2d_t<int, P>();
test_2d_t<float, P>();
test_2d_t<double, P>();
}
template <typename T, typename P>
void test_3d_t()
{
test_linestring_3d<T, P>();
// test_point_3d<T, test_point>();
}
template <typename P>
void test_3d()
{
test_3d_t<int, P>();
test_3d_t<float, P>();
test_3d_t<double, P>();
}
int test_main(int, char* [])
{
//test_2d<int[2]>();
//test_2d<float[2]>();
//test_2d<double[2]>();
test_2d<point<int, 2, cs::cartesian> >();
test_2d<point<float, 2, cs::cartesian> >();
test_2d<point<double, 2, cs::cartesian> >();
test_3d<point<double, 3, cs::cartesian> >();
return 0;
}