/Src/Dependencies/Boost/libs/geometry/doc/src/examples/algorithms/num_geometries.cpp
http://hadesmem.googlecode.com/ · C++ · 47 lines · 19 code · 11 blank · 17 comment · 0 complexity · 4dd6c5f052ed8dc12524a0987b9de0fd MD5 · raw file
- // Boost.Geometry (aka GGL, Generic Geometry Library)
- // QuickBook Example
- // Copyright (c) 2011 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)
- //[num_geometries
- //` Get the number of geometries making up a multi-geometry
- #include <iostream>
- #include <boost/geometry.hpp>
- #include <boost/geometry/geometries/point_xy.hpp>
- #include <boost/geometry/geometries/polygon.hpp>
- #include <boost/geometry/multi/geometries/multi_polygon.hpp>
- #include <boost/geometry/domains/gis/io/wkt/wkt.hpp>
- int main()
- {
- boost::geometry::model::multi_polygon
- <
- boost::geometry::model::polygon
- <
- boost::geometry::model::d2::point_xy<double>
- >
- > mp;
- boost::geometry::read_wkt("MULTIPOLYGON(((0 0,0 10,10 0,0 0),(1 1,1 9,9 1,1 1)),((10 10,10 7,7 10,10 10)))", mp);
- std::cout << "Number of geometries: " << boost::geometry::num_geometries(mp) << std::endl;
- return 0;
- }
- //]
- //[num_geometries_output
- /*`
- Output:
- [pre
- Number of geometries: 2
- ]
- */
- //]