20#ifndef GEOS_GEOM_PREP_ABSTRACTPREPAREDPOLYGONCONTAINS_H
21#define GEOS_GEOM_PREP_ABSTRACTPREPAREDPOLYGONCONTAINS_H
23#include <geos/geom/prep/PreparedPolygonPredicate.h>
65class AbstractPreparedPolygonContains :
public PreparedPolygonPredicate
69 bool hasSegmentIntersection;
70 bool hasProperIntersection;
71 bool hasNonProperIntersection;
73 bool isProperIntersectionImpliesNotContainedSituation(
const geom::Geometry * testGeom);
112 AbstractPreparedPolygonContains(
const PreparedPolygon *
const prepPoly)
113 : PreparedPolygonPredicate( prepPoly),
114 hasSegmentIntersection( false),
115 hasProperIntersection( false),
116 hasNonProperIntersection( false),
122 hasSegmentIntersection( false),
123 hasProperIntersection( false),
124 hasNonProperIntersection( false),
128 virtual ~AbstractPreparedPolygonContains()
Basic implementation of Geometry, constructed and destructed by GeometryFactory.
Definition Geometry.h:167
A base class containing the logic for computes the contains and covers spatial relationship predicate...
Definition AbstractPreparedPolygonContains.h:66
bool eval(const geom::Geometry *geom)
virtual bool fullTopologicalPredicate(const geom::Geometry *geom)=0
bool requireSomePointInInterior
Definition AbstractPreparedPolygonContains.h:91
A base class for predicate operations on PreparedPolygons.
Definition PreparedPolygonPredicate.h:58
A prepared version of Polygon or MultiPolygon geometries.
Definition PreparedPolygon.h:49
Contains the Geometry interface hierarchy and supporting classes.
Definition IndexedNestedRingTester.h:26
Basic namespace for all GEOS functionalities.
Definition IndexedNestedRingTester.h:25