예제 #1
0
 def switch_off(self):
     """Робить точку невидимою на екрані
     """
     if self._visible:
         self._visible = False
         turtle.up()
         turtle.setpos(self._x, self._y)
         turtle.down()
         turtle.dot(turtle.bgcolor())
예제 #2
0
 def switch_on(self):
     """Робить точку видимою на екрані
     """
     if not self._visible:
         self._visible = True
         turtle.penup()
         turtle.setpos(self._x, self._y)
         turtle.down()
         turtle.dot()
예제 #3
0
 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)
예제 #4
0
 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)