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
|
/**********************************************************************
* $Id: NodeMap.cpp 1820 2006-09-06 16:54:23Z mloskot $
*
* GEOS - Geometry Engine Open Source
* http://geos.refractions.net
*
* Copyright (C) 2001-2002 Vivid Solutions Inc.
* Copyright (C) 2005 Refractions Research Inc.
*
* This is free software; you can redistribute and/or modify it under
* the terms of the GNU Lesser General Licence as published
* by the Free Software Foundation.
* See the COPYING file for more information.
*
**********************************************************************/
#include <geos/planargraph/NodeMap.h>
#include <geos/planargraph/Node.h>
#include <map>
using namespace std;
namespace geos {
namespace planargraph {
/**
* Constructs a NodeMap without any Nodes.
*/
NodeMap::NodeMap()
{
}
NodeMap::~NodeMap()
{
}
NodeMap::container&
NodeMap::getNodeMap()
{
return nodeMap;
}
/**
* Adds a node to the map, replacing any that is already at that location.
* @return the added node
*/
Node*
NodeMap::add(Node *n)
{
nodeMap.insert(pair<geom::Coordinate, Node*>(n->getCoordinate(),n));
return n;
}
/**
* Removes the Node at the given location, and returns it
* (or null if no Node was there).
*/
Node *
NodeMap::remove(geom::Coordinate& pt)
{
Node *n=find(pt);
nodeMap.erase(pt);
return n;
}
vector<Node*>*
NodeMap::getNodes()
{
vector<Node*> *values=new vector<Node*>();
NodeMap::container::iterator it=nodeMap.begin();
while(it!=nodeMap.end()) {
values->push_back(it->second);
++it;
}
return values;
}
/**
* Returns the Node at the given location, or null if no Node was there.
*/
Node*
NodeMap::find(const geom::Coordinate& coord)
{
container::iterator found=nodeMap.find(coord);
if (found==nodeMap.end())
return NULL;
else
return found->second;
}
} //namespace planargraph
} //namespace geos
/**********************************************************************
* $Log$
* Revision 1.1 2006/03/21 21:42:54 strk
* planargraph.h header split, planargraph:: classes renamed to match JTS symbols
*
**********************************************************************/
|