C# Class SharpNeat.View.Graph.GraphNode

Represents a node in a graph.
Exibir arquivo Open project: colgreen/sharpneat Class Usage Examples

Public Methods

Method Description
GraphNode ( string tag ) : System.Collections.Generic

Constructs with the provided string tag.

GraphNode ( string tag, Point position ) : System.Collections.Generic

Constructs with the provided string tag and position.

GraphNode ( string tag, Point position, object auxData ) : System.Collections.Generic

Constructs with the provided string tag, position and auxiliary data.

GraphNode ( string tag, Point position, object auxData, int depth ) : System.Collections.Generic

Constructs with the provided string tag, position, auxiliary data and node depth.

Method Details

GraphNode() public method

Constructs with the provided string tag.
public GraphNode ( string tag ) : System.Collections.Generic
tag string
return System.Collections.Generic

GraphNode() public method

Constructs with the provided string tag and position.
public GraphNode ( string tag, Point position ) : System.Collections.Generic
tag string
position System.Drawing.Point
return System.Collections.Generic

GraphNode() public method

Constructs with the provided string tag, position and auxiliary data.
public GraphNode ( string tag, Point position, object auxData ) : System.Collections.Generic
tag string
position System.Drawing.Point
auxData object
return System.Collections.Generic

GraphNode() public method

Constructs with the provided string tag, position, auxiliary data and node depth.
public GraphNode ( string tag, Point position, object auxData, int depth ) : System.Collections.Generic
tag string
position System.Drawing.Point
auxData object
depth int
return System.Collections.Generic