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
contains(Geometry const &)

Generate contains() predicate.

Description

Generate a predicate defining Value and Geometry relationship. Value will be returned by the query if bg::within(Geometry, Indexable) returns true.

Synopsis
template<typename Geometry>
detail::spatial_predicate<Geometry, detail::contains_tag, false> boost::geometry::index::contains(Geometry const & g)
Template parameter(s)

Parameter

Description

Geometry

The Geometry type.

Parameter(s)

Type

Name

Description

Geometry const &

g

The Geometry object.

Example

bgi::query(spatial_index, bgi::contains(box), std::back_inserter(result));


PrevUpHomeNext