mirror of
https://github.com/boostorg/geometry.git
synced 2025-05-10 15:44:07 +00:00
16 lines
444 B
C++
16 lines
444 B
C++
/*!
|
|
\defgroup disjoint disjoint: detect if geometries are not spatially related
|
|
\details disjoint means spatially disjoint, there is no overlap of interiors
|
|
and boundaries, the intersection of interiors or boundaries is empty.
|
|
|
|
\par Geometries:
|
|
- \b point + \b point (= ! equals)
|
|
- \b point + \b box (= not within or on border)
|
|
- \b box + \b box
|
|
- \b ring + \b box
|
|
- \b polygon + \b box
|
|
- \b polygon + \b ring
|
|
- \b polygon + \b polygon
|
|
|
|
*/
|