SharpNeat.View.Graph.GraphNode.GraphNode C# (CSharp) Method

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
        public GraphNode(string tag, Point position)
            : this(tag, position, null, 0)
        {}

Same methods

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