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"
    def __init__(self, block_id, **props):

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

        self.type = "rssfeed"
Example #4
0
 def __init__(self, out=2):
     Block.__init__(self)
     self._changeOut = out
Example #5
0
 def __init__(self, k=1):
     Block.__init__(self)
     self.changek = k
Example #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"
Example #8
0
 def __init__(self, k=1):
     Block.__init__(self)
     self.inp = 2
     self._changeInput = self.inp
Example #9
0
 def __init__(self):
     Block.__init__(self)
     self.changeConstant = 1
     self.inp = 0
     self.inp_signals = [self.changeConstant] # значение по умолчанию
Example #10
0
 def __init__(self):
     Block.__init__(self)
     self.pure = False
     self.x = []
     self.y = []
     self.out = 0