Exemplo n.º 1
0
    def __init__(self, over, under):
        Top.__init__(self, find_bounding_box(over + under))

        from block import Block

        self.over = Block(over)
        self.under = Block(under)
Exemplo n.º 2
0
 def __init__(self, children):
     Top.__init__(self, find_bounding_box(children))
     self.children = children
Exemplo n.º 3
0
 def __init__(self, bounding_rectangle):
     Top.__init__(self, bounding_rectangle)