Пример #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(Coordinate pt, DirectedEdgeStar deStar)
 {
     this.pt     = pt;
     this.deStar = deStar;
 }
Пример #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(Coordinate pt, DirectedEdgeStar deStar)
 {
     this.pt = pt;
     this.deStar = deStar;
 }