/usr/include/geos/operation/overlay/PolygonBuilder.h is in libgeos-dev 3.2.2-3ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 | /**********************************************************************
* $Id: PolygonBuilder.h 2556 2009-06-06 22:22:28Z strk $
*
* GEOS - Geometry Engine Open Source
* http://geos.refractions.net
*
* Copyright (C) 2006 Refractions Research Inc.
*
* This is free software; you can redistribute and/or modify it under
* the terms of the GNU Lesser General Public Licence as published
* by the Free Software Foundation.
* See the COPYING file for more information.
*
**********************************************************************
*
* Last port: operation/overlay/PolygonBuilder.java rev. 1.20 (JTS-1.10)
*
**********************************************************************/
#ifndef GEOS_OP_OVERLAY_POLYGONBUILDER_H
#define GEOS_OP_OVERLAY_POLYGONBUILDER_H
#include <geos/export.h>
#include <vector>
// Forward declarations
namespace geos {
namespace geom {
class Geometry;
class Coordinate;
class GeometryFactory;
}
namespace geomgraph {
class EdgeRing;
class Node;
class PlanarGraph;
class DirectedEdge;
}
namespace operation {
namespace overlay {
class MaximalEdgeRing;
class MinimalEdgeRing;
}
}
}
namespace geos {
namespace operation { // geos::operation
namespace overlay { // geos::operation::overlay
/** \brief
* Forms Polygon out of a graph of geomgraph::DirectedEdge.
*
* The edges to use are marked as being in the result Area.
*/
class GEOS_DLL PolygonBuilder {
public:
PolygonBuilder(const geom::GeometryFactory *newGeometryFactory);
~PolygonBuilder();
/**
* Add a complete graph.
* The graph is assumed to contain one or more polygons,
* possibly with holes.
*/
void add(geomgraph::PlanarGraph *graph);
// throw(const TopologyException &)
/**
* Add a set of edges and nodes, which form a graph.
* The graph is assumed to contain one or more polygons,
* possibly with holes.
*/
void add(const std::vector<geomgraph::DirectedEdge*> *dirEdges,
const std::vector<geomgraph::Node*> *nodes);
// throw(const TopologyException &)
std::vector<geom::Geometry*>* getPolygons();
/** \brief
* Checks the current set of shells (with their associated holes) to
* see if any of them contain the point.
*/
bool containsPoint(const geom::Coordinate& p);
private:
const geom::GeometryFactory *geometryFactory;
std::vector<geomgraph::EdgeRing*> shellList;
/**
* For all DirectedEdges in result, form them into MaximalEdgeRings
*
* Ownership of the returned vector *and* it's elements is
* transferred to caller.
*/
std::vector<MaximalEdgeRing*>* buildMaximalEdgeRings(
const std::vector<geomgraph::DirectedEdge*> *dirEdges);
// throw(const TopologyException &)
std::vector<MaximalEdgeRing*>* buildMinimalEdgeRings(
std::vector<MaximalEdgeRing*> *maxEdgeRings,
std::vector<geomgraph::EdgeRing*> *newShellList,
std::vector<geomgraph::EdgeRing*> *freeHoleList);
/**
* This method takes a list of MinimalEdgeRings derived from a
* MaximalEdgeRing, and tests whether they form a Polygon.
* This is the case if there is a single shell
* in the list. In this case the shell is returned.
* The other possibility is that they are a series of connected
* holes, in which case no shell is returned.
*
* @return the shell geomgraph::EdgeRing, if there is one
* @return NULL, if all the rings are holes
*/
geomgraph::EdgeRing* findShell(std::vector<MinimalEdgeRing*>* minEdgeRings);
/**
* This method assigns the holes for a Polygon (formed from a list of
* MinimalEdgeRings) to its shell.
* Determining the holes for a MinimalEdgeRing polygon serves two
* purposes:
*
* - it is faster than using a point-in-polygon check later on.
* - it ensures correctness, since if the PIP test was used the point
* chosen might lie on the shell, which might return an incorrect
* result from the PIP test
*/
void placePolygonHoles(geomgraph::EdgeRing *shell,
std::vector<MinimalEdgeRing*> *minEdgeRings);
/**
* For all rings in the input list,
* determine whether the ring is a shell or a hole
* and add it to the appropriate list.
* Due to the way the DirectedEdges were linked,
* a ring is a shell if it is oriented CW, a hole otherwise.
*/
void sortShellsAndHoles(std::vector<MaximalEdgeRing*> *edgeRings,
std::vector<geomgraph::EdgeRing*> *newShellList,
std::vector<geomgraph::EdgeRing*> *freeHoleList);
/** \brief
* This method determines finds a containing shell for all holes
* which have not yet been assigned to a shell.
*
* These "free" holes should all be <b>properly</b> contained in
* their parent shells, so it is safe to use the
* <code>findEdgeRingContaining</code> method.
* This is the case because any holes which are NOT
* properly contained (i.e. are connected to their
* parent shell) would have formed part of a MaximalEdgeRing
* and been handled in a previous step.
*
* @throws TopologyException if a hole cannot be assigned to a shell
*/
void placeFreeHoles(std::vector<geomgraph::EdgeRing*>& newShellList,
std::vector<geomgraph::EdgeRing*>& freeHoleList);
// throw(const TopologyException&)
/** \brief
* Find the innermost enclosing shell geomgraph::EdgeRing containing the
* argument geomgraph::EdgeRing, if any.
*
* The innermost enclosing ring is the <i>smallest</i> enclosing ring.
* The algorithm used depends on the fact that:
*
* ring A contains ring B iff envelope(ring A)
* contains envelope(ring B)
*
* This routine is only safe to use if the chosen point of the hole
* is known to be properly contained in a shell
* (which is guaranteed to be the case if the hole does not touch
* its shell)
*
* @return containing geomgraph::EdgeRing, if there is one
* @return NULL if no containing geomgraph::EdgeRing is found
*/
geomgraph::EdgeRing* findEdgeRingContaining(geomgraph::EdgeRing *testEr,
std::vector<geomgraph::EdgeRing*>& newShellList);
std::vector<geom::Geometry*>* computePolygons(
std::vector<geomgraph::EdgeRing*>& newShellList);
/**
* Checks the current set of shells (with their associated holes) to
* see if any of them contain the point.
*/
};
} // namespace geos::operation::overlay
} // namespace geos::operation
} // namespace geos
#endif // ndef GEOS_OP_OVERLAY_POLYGONBUILDER_H
/**********************************************************************
* $Log$
* Revision 1.3 2006/06/13 23:26:46 strk
* cleanups
*
* Revision 1.2 2006/03/20 12:33:45 strk
* Simplified some privat methods to use refs instead of pointers, added
* debugging section for failiures of holes/shells associations
*
* Revision 1.1 2006/03/17 13:24:59 strk
* opOverlay.h header splitted. Reduced header inclusions in operation/overlay implementation files. ElevationMatrixFilter code moved from own file to ElevationMatrix.cpp (ideally a class-private).
*
**********************************************************************/
|