18 #include <geos/export.h> 19 #include <geos/geom/Coordinate.h> 26 #pragma warning(disable: 4251) // warning C4251: needs to have dll-interface to be used by clients of class 31 namespace planargraph {
32 class DirectedEdgeStar;
40 namespace planargraph {
49 typedef std::map<geom::Coordinate, Node*, geom::CoordinateLessThan> container;
58 container& getNodeMap();
93 return nodeMap.begin();
99 return nodeMap.begin();
101 container::const_iterator
104 return nodeMap.begin();
110 return nodeMap.end();
112 container::const_iterator
115 return nodeMap.end();
125 void getNodes(std::vector<Node*>& nodes);
Coordinate is the lightweight class used to store coordinates.
Definition: Coordinate.h:216
Basic namespace for all GEOS functionalities.
Definition: Angle.h:25
A node in a PlanarGraph is a location where 0 or more Edge meet.
Definition: planargraph/Node.h:44
container::iterator iterator()
Returns an Iterator over the Nodes in this NodeMap, sorted in ascending order by angle with the posit...
Definition: planargraph/NodeMap.h:91
A map of Node, indexed by the coordinate of the node.
Definition: planargraph/NodeMap.h:47