// Boost.Geometry (aka GGL, Generic Geometry Library) // Unit Test // Copyright (c) 2010 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) #include #include // #define BOOST_GEOMETRY_DEBUG_ASSEMBLE #include #include #include #include #include #include // only for testing #77 #include #include #include #include template void test_areal() { test_one("simplex_multi", case_multi_simplex[0], case_multi_simplex[1], 2, 12, 6.42); test_one("case_multi_no_ip", case_multi_no_ip[0], case_multi_no_ip[1], 2, 8, 8.5); test_one("case_multi_2", case_multi_2[0], case_multi_2[1], 3, 12, 5.9); test_one("simplex_multi_mp_p", case_multi_simplex[0], case_single_simplex, 2, 12, 6.42); test_one("simplex_multi_r_mp", case_single_simplex, case_multi_simplex[0], 2, 12, 6.42); test_one("simplex_multi_mp_r", case_multi_simplex[0], case_single_simplex, 2, 12, 6.42); // Constructed cases for multi/touch/equal/etc test_one("case_61_multi", case_61_multi[0], case_61_multi[1], 0, 0, 0.0); test_one("case_62_multi", case_62_multi[0], case_62_multi[1], 1, 5, 1.0); test_one("case_63_multi", case_63_multi[0], case_63_multi[1], 1, 5, 1.0); test_one("case_64_multi", case_64_multi[0], case_64_multi[1], 1, 5, 1.0); test_one("case_65_multi", case_65_multi[0], case_65_multi[1], 1, 5, 1.0); test_one("case_72_multi", case_72_multi[0], case_72_multi[1], 3, 14, 2.85); test_one("case_77_multi", case_77_multi[0], case_77_multi[1], 5, 33, 9); test_one("case_78_multi", case_78_multi[0], case_78_multi[1], 1, 0, 22); // In "get_turns" using partitioning, #points went from 17 to 16 test_one("case_101_multi", case_101_multi[0], case_101_multi[1], 4, 22, 4.75); test_one("case_102_multi", case_102_multi[0], case_102_multi[1], 3, 26, 19.75); test_one("case_107_multi", case_107_multi[0], case_107_multi[1], 2, 10, 1.5); test_one("case_recursive_boxes_1", case_recursive_boxes_1[0], case_recursive_boxes_1[1], 10, 97, 47.0); test_one("case_recursive_boxes_2", case_recursive_boxes_2[0], case_recursive_boxes_2[1], 1, 47, 90.0); // Area from SQL Server test_one("case_recursive_boxes_3", case_recursive_boxes_3[0], case_recursive_boxes_3[1], 19, 87, 12.5); // Area from SQL Server test_one("case_recursive_boxes_4", case_recursive_boxes_4[0], case_recursive_boxes_4[1], 13, 157, 67.0); // Area from SQL Server } template void test_areal_clip() { static std::string const clip = "POLYGON((1 1,4 4))"; test_one("simplex_multi_mp_b", clip, case_multi_simplex[0], 2, 11, 6.791666); test_one("simplex_multi_b_mp", case_multi_simplex[0], clip, 2, 11, 6.791666); } template void test_linear() { typedef typename bg::point_type::type point; test_one("case_multi_ml_ml_1", "MULTILINESTRING((0 0,1 1))", "MULTILINESTRING((0 1,1 0))", 1, 1, 0); test_one("case_multi_ml_ml_2", "MULTILINESTRING((0 0,1 1),(0.5 0,1.5 1))", "MULTILINESTRING((0 1,1 0),(0.5 1,1.5 0))", 4, 4, 0); test_one("case_multi_l_ml", "LINESTRING(0 0,1 1)", "MULTILINESTRING((0 1,1 0),(0.5 1,1.5 0))", 2, 2, 0); test_one("case_multi_ml_l", "MULTILINESTRING((0 1,1 0),(0.5 1,1.5 0))", "LINESTRING(0 0,1 1)", 2, 2, 0); test_one("case_multi_ml_b", "MULTILINESTRING((0 0,3 3)(1 0,4 3))", "POLYGON((1 1,3 2))", 2, 4, 2 * std::sqrt(2.0)); test_one("case_multi_b_ml", "POLYGON((1 1,3 2))", "MULTILINESTRING((0 0,3 3)(1 0,4 3))", 2, 4, 2 * std::sqrt(2.0)); } template void test_all() { typedef bg::model::box

box; typedef bg::model::ring

ring; typedef bg::model::polygon

polygon; typedef bg::model::multi_polygon multi_polygon; test_areal(); #if ! defined(BOOST_GEOMETRY_TEST_ONLY_ONE_TYPE) typedef bg::model::ring ring_ccw; typedef bg::model::polygon polygon_ccw; typedef bg::model::multi_polygon multi_polygon_ccw; test_areal(); typedef bg::model::ring ring_open; typedef bg::model::polygon polygon_open; typedef bg::model::multi_polygon multi_polygon_open; test_areal(); typedef bg::model::ring ring_open_ccw; typedef bg::model::polygon polygon_open_ccw; typedef bg::model::multi_polygon multi_polygon_open_ccw; test_areal(); test_areal_clip(); test_areal_clip(); typedef bg::model::linestring

linestring; typedef bg::model::multi_linestring multi_linestring; test_linear(); #endif // linear } int test_main(int, char* []) { test_all >(); #ifdef HAVE_TTMATH test_all >(); #endif return 0; }