def __init__(self, block_id, **props):

        Block.__init__(self, block_id, **props)

        self.type = "snippet"
    def __init__(self, block_id, **props):

        Block.__init__(self, block_id, **props)

        self.type = "ext_content"
示例#3
0
    def __init__(self, block_id, **props):

        Block.__init__(self, block_id, **props)

        self.type = "rssfeed"
示例#4
0
 def __init__(self, out=2):
     Block.__init__(self)
     self._changeOut = out
示例#5
0
 def __init__(self, k=1):
     Block.__init__(self)
     self.changek = k
示例#6
0
 def __init__(self, k=1):
     Block.__init__(self)
    def __init__(self, block_id, **props):

        Block.__init__(self, block_id, **props)

        self.type = "image"
示例#8
0
 def __init__(self, k=1):
     Block.__init__(self)
     self.inp = 2
     self._changeInput = self.inp
示例#9
0
 def __init__(self):
     Block.__init__(self)
     self.changeConstant = 1
     self.inp = 0
     self.inp_signals = [self.changeConstant] # значение по умолчанию
示例#10
0
 def __init__(self):
     Block.__init__(self)
     self.pure = False
     self.x = []
     self.y = []
     self.out = 0