/src/geos/src/geom/prep/PreparedPolygonCovers.cpp
Line | Count | Source (jump to first uncovered line) |
1 | | /********************************************************************** |
2 | | * |
3 | | * GEOS - Geometry Engine Open Source |
4 | | * http://geos.osgeo.org |
5 | | * |
6 | | * Copyright (C) 2001-2002 Vivid Solutions Inc. |
7 | | * |
8 | | * This is free software; you can redistribute and/or modify it under |
9 | | * the terms of the GNU Lesser General Public Licence as published |
10 | | * by the Free Software Foundation. |
11 | | * See the COPYING file for more information. |
12 | | * |
13 | | ********************************************************************** |
14 | | * |
15 | | * Last port: geom/prep/PreparedPolygonCovers.java rev 1.2 (JTS-1.10) |
16 | | * (2007-12-12) |
17 | | * |
18 | | **********************************************************************/ |
19 | | |
20 | | |
21 | | #include <geos/geom/prep/PreparedPolygonCovers.h> |
22 | | #include <geos/geom/prep/PreparedPolygon.h> |
23 | | #include <geos/geom/Geometry.h> |
24 | | |
25 | | namespace geos { |
26 | | namespace geom { // geos.geom |
27 | | namespace prep { // geos.geom.prep |
28 | | // |
29 | | // private: |
30 | | // |
31 | | |
32 | | // |
33 | | // protected: |
34 | | // |
35 | | bool |
36 | | PreparedPolygonCovers::fullTopologicalPredicate(const geom::Geometry* geom) |
37 | 0 | { |
38 | 0 | bool result = prepPoly->getGeometry().covers(geom); |
39 | 0 | return result; |
40 | 0 | } |
41 | | |
42 | | // |
43 | | // public: |
44 | | // |
45 | | |
46 | | } // namespace geos.geom.prep |
47 | | } // namespace geos.geom |
48 | | } // namespace geos |