20 #ifndef GEOS_GEOM_PREP_ABSTRACTPREPAREDPOLYGONCONTAINS_H 21 #define GEOS_GEOM_PREP_ABSTRACTPREPAREDPOLYGONCONTAINS_H 23 #include <geos/geom/prep/PreparedPolygonPredicate.h> 32 class PreparedPolygon;
69 bool hasSegmentIntersection;
70 bool hasProperIntersection;
71 bool hasNonProperIntersection;
73 bool isProperIntersectionImpliesNotContainedSituation(
const geom::Geometry * testGeom);
109 virtual bool fullTopologicalPredicate(
const geom::Geometry * geom) =0;
114 hasSegmentIntersection( false),
115 hasProperIntersection( false),
116 hasNonProperIntersection( false),
117 requireSomePointInInterior(true)
122 hasSegmentIntersection( false),
123 hasProperIntersection( false),
124 hasNonProperIntersection( false),
125 requireSomePointInInterior(requireSomePointInInterior)
137 #endif // GEOS_GEOM_PREP_ABSTRACTPREPAREDPOLYGONCONTAINS_H Basic implementation of Geometry, constructed and destructed by GeometryFactory.
Definition: Geometry.h:167
A base class for predicate operations on PreparedPolygons.
Definition: PreparedPolygonPredicate.h:57
bool requireSomePointInInterior
Definition: AbstractPreparedPolygonContains.h:91
Basic namespace for all GEOS functionalities.
Definition: IndexedNestedRingTester.h:25
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:48