mirror of
https://github.com/boostorg/geometry.git
synced 2025-05-12 14:01:47 +00:00
79 lines
2.8 KiB
C++
79 lines
2.8 KiB
C++
// Boost.Geometry (aka GGL, Generic Geometry Library)
|
|
// Unit Test
|
|
|
|
// Copyright (c) 2007-2012 Barend Gehrels, Amsterdam, the Netherlands.
|
|
// Copyright (c) 2008-2012 Bruno Lalande, Paris, France.
|
|
// Copyright (c) 2009-2012 Mateusz Loskot, London, UK.
|
|
// Copyright (c) 2011-2012 Adam Wulkiewicz, Lodz, Poland.
|
|
|
|
// Parts of Boost.Geometry are redesigned from Geodan's Geographic Library
|
|
// (geolib/GGL), copyright (c) 1995-2010 Geodan, 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)
|
|
|
|
|
|
#include <algorithms/test_content.hpp>
|
|
|
|
#include <boost/geometry/geometries/point_xy.hpp>
|
|
#include <boost/geometry/geometries/point.hpp>
|
|
#include <boost/geometry/geometries/box.hpp>
|
|
|
|
//#define GEOMETRY_TEST_DEBUG
|
|
|
|
void test_large_integers()
|
|
{
|
|
typedef bg::model::point<int, 2, bg::cs::cartesian> int_point_type;
|
|
typedef bg::model::point<double, 2, bg::cs::cartesian> double_point_type;
|
|
|
|
bg::model::box<int_point_type> int_box;
|
|
bg::model::box<double_point_type> double_box;
|
|
|
|
std::string const box_li = "POLYGON((1536119 192000, 1872000 528000))";
|
|
bg::read_wkt(box_li, int_box);
|
|
bg::read_wkt(box_li, double_box);
|
|
|
|
double int_value = bgi::content(int_box);
|
|
double double_value = bgi::content(double_box);
|
|
|
|
BOOST_CHECK_CLOSE(int_value, double_value, 0.0001);
|
|
}
|
|
|
|
int test_main(int, char* [])
|
|
{
|
|
typedef bg::model::point<int, 2, bg::cs::cartesian> P2ic;
|
|
typedef bg::model::point<float, 2, bg::cs::cartesian> P2fc;
|
|
typedef bg::model::point<double, 2, bg::cs::cartesian> P2dc;
|
|
|
|
typedef bg::model::point<int, 3, bg::cs::cartesian> P3ic;
|
|
typedef bg::model::point<float, 3, bg::cs::cartesian> P3fc;
|
|
typedef bg::model::point<double, 3, bg::cs::cartesian> P3dc;
|
|
|
|
test_content(P2ic(0, 0), 0);
|
|
test_content(P2fc(0, 0), 0);
|
|
test_content(P2dc(0, 0), 0);
|
|
test_content(P3ic(0, 0, 0), 0);
|
|
test_content(P3fc(0, 0, 0), 0);
|
|
test_content(P3dc(0, 0, 0), 0);
|
|
|
|
test_geometry<bg::model::box<P2ic> >("POLYGON((0 1,2 4))", 6.0);
|
|
test_geometry<bg::model::box<P2fc> >("POLYGON((0 1,2 4))", 6.0);
|
|
test_geometry<bg::model::box<P2dc> >("POLYGON((0 1,2 4))", 6.0);
|
|
test_geometry<bg::model::box<P3ic> >("POLYGON((0 1 2,2 4 6))", 24.0);
|
|
test_geometry<bg::model::box<P3fc> >("POLYGON((0 1 2,2 4 6))", 24.0);
|
|
test_geometry<bg::model::box<P3dc> >("POLYGON((0 1 2,2 4 6))", 24.0);
|
|
|
|
#ifdef HAVE_TTMATH
|
|
typedef bg::model::point<ttmath_big, 2, bg::cs::cartesian> P2ttmc;
|
|
typedef bg::model::point<ttmath_big, 3, bg::cs::cartesian> P3ttmc;
|
|
|
|
test_geometry<bg::model::box<P2ttmc> >("POLYGON((0 1,2 4))", 6.0);
|
|
test_geometry<bg::model::box<P3ttmc> >("POLYGON((0 1 2,2 4 6))", 24.0);
|
|
#endif
|
|
|
|
test_large_integers();
|
|
|
|
return 0;
|
|
}
|