Move circle or arc in clock by delta x, delta y
(self, delta_x, delta_y)
| 90 | start, style='arc', arc_color=fill)) |
| 91 | |
| 92 | def move(self, delta_x, delta_y): |
| 93 | """ |
| 94 | Move circle or arc in clock by delta x, delta y |
| 95 | """ |
| 96 | if False in Gauge.mapping(isinstance, [delta_x, delta_y], (int, float)): |
| 97 | raise ValueError |
| 98 | self.all[0] += delta_x |
| 99 | self.all[1] += delta_y |
| 100 | for figure in self.figure: |
| 101 | self.graph_elem.MoveFigure(figure, delta_x, delta_y) |
| 102 | |
| 103 | class Pointer(): |
| 104 | """ |