def switch_on(self): """Робить коло видимим на екрані """ if not self._visible: self._visible = True turtle.up() turtle.setpos(self._x, self._y - self._r) # малює починаючи знизу кола turtle.down() turtle.circle(self._r)
def switch_off(self): """Робить коло невидимим на екрані """ if self._visible: self._visible = False turtle.up() turtle.setpos(self._x, self._y - self._r) # малює починаючи знизу кола turtle.down() c = turtle.pencolor() turtle.pencolor(turtle.bgcolor()) turtle.circle(self._r) turtle.pencolor(c)