/usr/include/geos/geomgraph/DirectedEdgeStar.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 | /**********************************************************************
* $Id: DirectedEdgeStar.h 2557 2009-06-08 09:30:55Z strk $
*
* GEOS - Geometry Engine Open Source
* http://geos.refractions.net
*
* Copyright (C) 2005-2006 Refractions Research Inc.
* Copyright (C) 2001-2002 Vivid Solutions 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: geomgraph/DirectedEdgeStar.java rev. 1.4 (JTS-1.10)
*
**********************************************************************/
#ifndef GEOS_GEOMGRAPH_DIRECTEDEDGEENDSTAR_H
#define GEOS_GEOMGRAPH_DIRECTEDEDGEENDSTAR_H
#include <geos/export.h>
#include <set>
#include <string>
#include <vector>
#include <geos/geomgraph/EdgeEndStar.h> // for inheritance
#include <geos/geomgraph/Label.h> // for private member
#include <geos/geom/Coordinate.h> // for p0,p1
#include <geos/inline.h>
// Forward declarations
namespace geos {
namespace geomgraph {
class DirectedEdge;
class EdgeRing;
}
}
namespace geos {
namespace geomgraph { // geos.geomgraph
/**
* \brief
* A DirectedEdgeStar is an ordered list of <b>outgoing</b> DirectedEdges around a node.
*
* It supports labelling the edges as well as linking the edges to form both
* MaximalEdgeRings and MinimalEdgeRings.
*
*/
class GEOS_DLL DirectedEdgeStar: public EdgeEndStar {
public:
DirectedEdgeStar()
:
EdgeEndStar(),
resultAreaEdgeList(0),
label()
{}
~DirectedEdgeStar() {
delete resultAreaEdgeList;
}
/// Insert a directed edge in the list
void insert(EdgeEnd *ee);
Label &getLabel() { return label; }
int getOutgoingDegree();
int getOutgoingDegree(EdgeRing *er);
DirectedEdge* getRightmostEdge();
/** \brief
* Compute the labelling for all dirEdges in this star, as well
* as the overall labelling
*/
void computeLabelling(std::vector<GeometryGraph*> *geom); // throw(TopologyException *);
/** \brief
* For each dirEdge in the star,
* merge the label from the sym dirEdge into the label
*/
void mergeSymLabels();
/// Update incomplete dirEdge labels from the labelling for the node
void updateLabelling(Label *nodeLabel);
/**
* Traverse the star of DirectedEdges, linking the included edges together.
* To link two dirEdges, the <next> pointer for an incoming dirEdge
* is set to the next outgoing edge.
*
* DirEdges are only linked if:
*
* - they belong to an area (i.e. they have sides)
* - they are marked as being in the result
*
* Edges are linked in CCW order (the order they are stored).
* This means that rings have their face on the Right
* (in other words,
* the topological location of the face is given by the RHS label of the DirectedEdge)
*
* PRECONDITION: No pair of dirEdges are both marked as being in the result
*/
void linkResultDirectedEdges(); // throw(TopologyException *);
void linkMinimalDirectedEdges(EdgeRing *er);
void linkAllDirectedEdges();
/** \brief
* Traverse the star of edges, maintaing the current location in the result
* area at this node (if any).
*
* If any L edges are found in the interior of the result, mark them as covered.
*/
void findCoveredLineEdges();
/** \brief
* Compute the DirectedEdge depths for a subsequence of the edge array.
*
* @return the last depth assigned (from the R side of the last edge visited)
*/
void computeDepths(DirectedEdge *de);
std::string print();
private:
/**
* A list of all outgoing edges in the result, in CCW order
*/
std::vector<DirectedEdge*> *resultAreaEdgeList;
Label label;
/// \brief
/// Returned vector is onwed by DirectedEdgeStar object, but
/// lazily created
std::vector<DirectedEdge*>* getResultAreaEdges();
/// States for linResultDirectedEdges
enum {
SCANNING_FOR_INCOMING=1,
LINKING_TO_OUTGOING
};
int computeDepths(EdgeEndStar::iterator startIt,
EdgeEndStar::iterator endIt, int startDepth);
};
} // namespace geos.geomgraph
} // namespace geos
//#ifdef GEOS_INLINE
//# include "geos/geomgraph/DirectedEdgeEndStar.inl"
//#endif
#endif // ifndef GEOS_GEOMGRAPH_DIRECTEDEDGEENDSTAR_H
/**********************************************************************
* $Log$
* Revision 1.4 2006/03/24 09:52:41 strk
* USE_INLINE => GEOS_INLINE
*
* Revision 1.3 2006/03/23 15:10:29 strk
* Dropped by-pointer TopologyException constructor, various small cleanups
*
* Revision 1.2 2006/03/15 17:17:41 strk
* Added missing forward declarations
*
* Revision 1.1 2006/03/09 16:46:49 strk
* geos::geom namespace definition, first pass at headers split
*
**********************************************************************/
|