20 #ifndef GEOS_GEOM_PREP_ABSTRACTPREPAREDPOLYGONCONTAINS_H 21 #define GEOS_GEOM_PREP_ABSTRACTPREPAREDPOLYGONCONTAINS_H 23 #include <geos/geom/prep/PreparedPolygonPredicate.h> 68 bool hasSegmentIntersection;
69 bool hasProperIntersection;
70 bool hasNonProperIntersection;
72 bool isProperIntersectionImpliesNotContainedSituation(
const geom::Geometry* testGeom);
118 virtual bool fullTopologicalPredicate(
const geom::Geometry* geom) = 0;
123 hasSegmentIntersection(false),
124 hasProperIntersection(false),
125 hasNonProperIntersection(false),
126 requireSomePointInInterior(true)
131 hasSegmentIntersection(false),
132 hasProperIntersection(false),
133 hasNonProperIntersection(false),
134 requireSomePointInInterior(p_requireSomePointInInterior)
146 #endif // GEOS_GEOM_PREP_ABSTRACTPREPAREDPOLYGONCONTAINS_H Basic implementation of Geometry, constructed and destructed by GeometryFactory.
Definition: Geometry.h:188
A base class for predicate operations on PreparedPolygons.
Definition: PreparedPolygonPredicate.h:58
bool requireSomePointInInterior
Definition: AbstractPreparedPolygonContains.h:90
Location
Constants representing the location of a point relative to a geometry.
Definition: Location.h:34
Basic namespace for all GEOS functionalities.
Definition: IndexedNestedRingTester.h:26
A base class containing the logic for computes the contains and covers spatial relationship predicate...
Definition: AbstractPreparedPolygonContains.h:65
A prepared version of Polygon or MultiPolygon geometries.
Definition: PreparedPolygon.h:52