/// <summary> /// Constructs a Node with the given location and collection of outgoing DirectedEdges. /// </summary> /// <param name="pt"></param> /// <param name="deStar"></param> public Node(ICoordinate pt, DirectedEdgeStar deStar) { this.pt = pt; this.deStar = deStar; }