Barend Gehrels b7be230f14 Added ttmath_big for:
append,assign,buffer,comparable_distance,convert,correct,disjoint,distance,envelope,for_each,make,reverse,simplify,transform,unique
  plus all vcproj files


[SVN r69336]
2011-02-27 16:27:57 +00:00

129 lines
3.2 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>
template <typename T, typename P>
void test_point_2d()
{
P p = bg::make<P>((T) 123, (T) 456);
BOOST_CHECK_CLOSE(bg::get<0>(p), 123.0, 1.0e-6);
BOOST_CHECK_CLOSE(bg::get<1>(p), 456.0, 1.0e-6);
}
template <typename T, typename P>
void test_point_3d()
{
P p = bg::make<P>((T) 123, (T) 456, (T) 789);
BOOST_CHECK_CLOSE( bg::get<0>(p), 123.0, 1.0e-6);
BOOST_CHECK_CLOSE( bg::get<1>(p), 456.0, 1.0e-6);
BOOST_CHECK_CLOSE( bg::get<2>(p), 789.0, 1.0e-6);
}
template <typename T, typename P>
void test_box_2d()
{
typedef bg::model::box<P> B;
B b = bg::make<B>((T) 123, (T) 456, (T) 789, (T) 1011);
BOOST_CHECK_CLOSE( (bg::get<bg::min_corner, 0>(b)), 123.0, 1.0e-6);
BOOST_CHECK_CLOSE( (bg::get<bg::min_corner, 1>(b)), 456.0, 1.0e-6);
BOOST_CHECK_CLOSE( (bg::get<bg::max_corner, 0>(b)), 789.0, 1.0e-6);
BOOST_CHECK_CLOSE( (bg::get<bg::max_corner, 1>(b)), 1011.0, 1.0e-6);
b = bg::make_inverse<B>();
}
template <typename T, typename P>
void test_linestring_2d()
{
typedef bg::model::linestring<P> L;
T coors[][2] = {{1,2}, {3,4}};
L line = bg::make<L>(coors);
BOOST_CHECK_EQUAL(line.size(), 2u);
}
template <typename T, typename P>
void test_linestring_3d()
{
typedef bg::model::linestring<P> L;
T coors[][3] = {{1,2,3}, {4,5,6}};
L line = bg::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<bg::model::point<int, 2, bg::cs::cartesian> >();
test_2d<bg::model::point<float, 2, bg::cs::cartesian> >();
test_2d<bg::model::point<double, 2, bg::cs::cartesian> >();
test_3d<bg::model::point<double, 3, bg::cs::cartesian> >();
#if defined(HAVE_TTMATH)
test_2d<bg::model::point<ttmath_big, 2, bg::cs::cartesian> >();
test_3d<bg::model::point<ttmath_big, 3, bg::cs::cartesian> >();
#endif
return 0;
}