// Boost.Geometry (aka GGL, Generic Geometry Library) test file // // Copyright Barend Gehrels 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 #include #include #include #include #include #include #include #include #include #include #include template void test_all() { namespace bg = boost::geometry; typedef bg::polygon

polygon; typedef bg::multi_polygon multi_polygon; test_one("three_triangles", "MULTIPOLYGON(((1 1,5 5,8 0,1 1)),((4 2,0 8,5 9,4 2)),((5 3,4 8,10 4,5 3)))" , 1, 15, 42.614078674948232); } int test_main(int, char* []) { test_all >(); return 0; }