C# Class SharpNeat.View.Graph.GraphNode

Represents a node in a graph.
Afficher le fichier Open project: colgreen/sharpneat Class Usage Examples

Méthodes publiques

Méthode 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 méthode

Constructs with the provided string tag.
public GraphNode ( string tag ) : System.Collections.Generic
tag string
Résultat System.Collections.Generic

GraphNode() public méthode

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

GraphNode() public méthode

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
Résultat System.Collections.Generic

GraphNode() public méthode

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
Résultat System.Collections.Generic