/// <summary> /// Initializes a new instance of the RelateNode class. /// </summary> public RelateNode( Coordinate coordinate, EdgeEndStar edges ) : base( coordinate, edges ) { }
/// <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); }
/// <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 ); }