Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
disjoint(Geometry const &)

Generate disjoint() predicate.

Description

Generate a predicate defining Value and Geometry relationship. With this predicate query returns indexed Values that are disjoint with passed Geometry. Value is returned by the query if bg::disjoint(Indexable, Geometry) returns true.

Synopsis
template<typename Geometry>
unspecified disjoint(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::disjoint(box), std::back_inserter(result));


PrevUpHomeNext