Actually added flowchart documentation this time.

This commit is contained in:
Luke Campagnola 2013-01-07 12:11:23 -05:00
parent 55462dc2d6
commit 5a23531aa3

View File

@ -106,6 +106,9 @@ class Flowchart(Node):
self.addTerminal(name, **opts)
def setInput(self, **args):
"""Set the input values of the flowchart. This will automatically propagate
the new values throughout the flowchart, (possibly) causing the output to change.
"""
#print "setInput", args
#Node.setInput(self, **args)
#print " ....."
@ -120,6 +123,8 @@ class Flowchart(Node):
#self.sigOutputChanged.emit(self)
def output(self):
"""Return a dict of the values on the Flowchart's output terminals.
"""
return self.outputNode.inputValues()
def nodes(self):