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

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
        public GraphNode(string tag, Point position, object[] auxData, int depth)
        {
            _tag = tag;
            _position = position;
            _auxData = auxData;
            _depth = depth;
            _inConnectionList = new List<GraphConnection>();
            _outConnectionList = new List<GraphConnection>();
        }

Same methods

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