Example #1
0
 /// <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;
 }
Example #2
0
 /// <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;
 }