// 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 #include #include #include #include #include #include #include #include #include template void test_2d() { /*test_envelope >( "MULTIPOINT((1 1),(1 0),(1 2))", 1, 1, 0, 2); test_envelope > >( "MULTILINESTRING((0 0,1 1),(1 1,2 2),(2 2,3 3))", 0, 3, 0, 3); */ test_envelope > >( "MULTIPOLYGON(((1 1,1 3,3 3,3 1,1 1)),((4 4,4 6,6 6,6 4,4 4)))", 1, 6, 1, 6); } template void test_3d() { typedef bg::model::multi_point

mp; } int test_main( int , char* [] ) { test_2d >(); test_2d >(); test_2d >(); test_3d >(); test_3d >(); return 0; }