161 |
they can not be used to resize/modify the element. |
they can not be used to resize/modify the element. |
162 |
""" |
""" |
163 |
|
|
164 |
def __init__(self, label="unnamed", width=10, height=10): |
def __init__(self, label="unnamed", width=64, height=64): |
165 |
|
|
166 |
self.ports = [] |
self.ports = [] |
167 |
self.label = label |
self.label = label |
213 |
box with the input ports on the left and the output ports on the right. |
box with the input ports on the left and the output ports on the right. |
214 |
""" |
""" |
215 |
|
|
216 |
def __init__(self, label="unnamed", width=10, height=10, inputs=2, outputs=3): |
def __init__(self, label="unnamed", width=64, height=64, inputs=2, outputs=3): |
217 |
|
|
218 |
super(DefaultBlock, self).__init__(label, width, height) |
super(DefaultBlock, self).__init__(label, width, height) |
219 |
|
|