Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

model::multi_polygon

multi_polygon, a collection of polygons

Description

Multi-polygon can be used to group polygons belonging to each other, e.g. Hawaii

Model of

MultiPolygon Concept

Synopsis

template<typename Polygon, template< typename, typename > class Container, template< typename > class Allocator>
class model::multi_polygon
      : public Container< Polygon, Allocator< Polygon > >
{
  // ...
};

Template parameter(s)

Parameter

Default

Description

typename Polygon

template< typename, typename > class Container

std::vector

template< typename > class Allocator

std::allocator

Header

#include <boost/geometry/multi/geometries/multi_polygon.hpp>


PrevUpHomeNext