Example #1
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="nodeGraphParser">Node graph parser</param>
 public NodeGraphExporter(INodeGraphParser nodeGraphParser)
 {
     _nodeGraphParser            = nodeGraphParser;
     _nodeGraphFunctionGenerator = null;
     _nodeGraphRenderer          = null;
     _errorCollection            = null;
 }
Example #2
0
 /// <summary>
 /// Sets the node graph function generator to use
 /// </summary>
 /// <param name="nodeGraphFunctionGenerator">Node graph function generator</param>
 public void SetNodeGraphFunctionGenerator(INodeGraphFunctionGenerator nodeGraphFunctionGenerator)
 {
     _nodeGraphFunctionGenerator = nodeGraphFunctionGenerator;
 }