예제 #1
0
 def __init__(self, parent):
     NodeBase.__init__(self, "AND", parent)
     self.addOut("Out")
     self.addIn("In 1", InSocket)
     self.addIn("In 2", InSocket)
예제 #2
0
 def __init__(self, parent):
     NodeBase.__init__(self, "OUT", parent)
     self.addIn("In 1", InSocket)
예제 #3
0
 def __init__(self, parent):
     NodeBase.__init__(self, "IN", parent)
     self.addOut("Out")
     self.addIn("In", NumericSocket)