Class NodeMap
A map of nodes, indexed by the coordinate of the node.
Assembly: NetTopologySuite.dll
Syntax
Properties
|
Improve this Doc
View Source
Count
Returns the number of Nodes in this NodeMap.
Declaration
public int Count { get; }
Property Value
|
Improve this Doc
View Source
Values
Returns the Nodes in this NodeMap, sorted in ascending order
by angle with the positive x-axis.
Declaration
public ICollection<Node> Values { get; }
Property Value
Methods
|
Improve this Doc
View Source
Add(Node)
Adds a node to the map, replacing any that is already at that location.
Declaration
Parameters
Type |
Name |
Description |
Node |
n |
|
Returns
Type |
Description |
Node |
The added node.
|
|
Improve this Doc
View Source
Find(Coordinate)
Returns the Node at the given location, or null if no Node was there.
Declaration
public Node Find(Coordinate coord)
Parameters
Returns
|
Improve this Doc
View Source
GetEnumerator()
Returns an Iterator over the Nodes in this NodeMap, sorted in ascending order
by angle with the positive x-axis.
Declaration
public IEnumerator<Node> GetEnumerator()
Returns
|
Improve this Doc
View Source
Remove(Coordinate)
Removes the Node at the given location, and returns it (or null if no Node was there).
Declaration
public Node Remove(Coordinate pt)
Parameters
Returns