mirror of
https://github.com/boostorg/geometry.git
synced 2026-02-12 12:12:10 +00:00
48 lines
1.2 KiB
C++
48 lines
1.2 KiB
C++
// Boost.Geometry (aka GGL, Generic Geometry Library)
|
|
//
|
|
// Copyright Barend Gehrels 2011, 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)
|
|
//
|
|
// Quickbook Example
|
|
|
|
//[num_points
|
|
//` Get the number of points in a geometry
|
|
|
|
#include <iostream>
|
|
|
|
#include <boost/geometry/geometry.hpp>
|
|
#include <boost/geometry/multi/multi.hpp>
|
|
#include <boost/geometry/geometries/geometries.hpp>
|
|
#include <boost/geometry/multi/geometries/multi_polygon.hpp>
|
|
#include <boost/geometry/extensions/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 points: " << boost::geometry::num_points(mp) << std::endl;
|
|
|
|
return 0;
|
|
}
|
|
|
|
//]
|
|
|
|
|
|
//[num_points_output
|
|
/*`
|
|
Output:
|
|
[pre
|
|
Number of points: 12
|
|
]
|
|
*/
|
|
//]
|