コード例 #1
0
ファイル: RelateNode.cs プロジェクト: xuchuansheng/GenXSource
		/// <summary>
		/// Initializes a new instance of the RelateNode class.
		/// </summary>
		public RelateNode( Coordinate coordinate, EdgeEndStar edges ) : base( coordinate, edges )
		{	
		}
コード例 #2
0
ファイル: Node.cs プロジェクト: tinuvieltr/geotools
 /// <summary>
 /// Initializes a new instance of the Node class.
 /// </summary>
 public Node(Coordinate coord, EdgeEndStar edges)
 {
     _coord = coord;
     _edges = edges;
     _label = new Label(0, Location.Null);
 }
コード例 #3
0
ファイル: Node.cs プロジェクト: vmoll/geotools
 /// <summary>
 /// Initializes a new instance of the Node class.
 /// </summary>
 public Node(Coordinate coord, EdgeEndStar edges)
 {
     _coord = coord;
     _edges = edges;
     _label = new Label( 0, Location.Null );
 }