def __init__(self, x_boundary, y_boundary):
     Blob.__init__(self, (0, 255, 0), x_boundary,
                   y_boundary)  # this will cause
Esempio n. 2
0
 def __init__(self, x_boundary, y_boundary):
     Blob.__init__(self, (0, 255, 0), x_boundary, y_boundary)
Esempio n. 3
0
 def __init__(self, x_boundary, y_boundary):
     Blob.__init__(self, GREEN, x_boundary, y_boundary)
 def __init__(self, x_boundary, y_boundary):
     #super().__init__(color, x_boundary, y_boundary)
     Blob.__init__(self, (0, 0, 255), x_boundary,
                   y_boundary)  # this will cause
Esempio n. 5
0
 def __init__(self, x_boundary, y_boundary):
     Blob.__init__(self, RED, x_boundary, y_boundary)
Esempio n. 6
0
 def __init__(self, x_boundary, y_boundary):
     Blob.__init__(self, BLUE, x_boundary, y_boundary)
 def __init__(self, color, x_boundary, y_boundary):
     Blob.__init__(self, color, x_boundary, y_boundary)
     self.color = BLUE
 def __init__(self, x_boundary, y_boundary):
     Blob.__init__(self, (0, 0, 255), x_boundary, y_boundary)
 def __init__(self, color, x_boundary, y_boundary):
     # super().__init__(color, x_boundary, y_boundary)
     Blob.__init__(self,(0,255,0),x_boundary, y_boundary)