コード例 #1
0
ファイル: Node.cs プロジェクト: yangqiaosheng/tf-net
 /// <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;
 }
コード例 #2
0
ファイル: Node.cs プロジェクト: izambakci/tf-net
 /// <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;
 }