Set the (*x*, *y*) position of the text. Parameters ---------- xy : (float, float)
(self, xy)
| 1354 | self.stale = True |
| 1355 | |
| 1356 | def set_position(self, xy): |
| 1357 | """ |
| 1358 | Set the (*x*, *y*) position of the text. |
| 1359 | |
| 1360 | Parameters |
| 1361 | ---------- |
| 1362 | xy : (float, float) |
| 1363 | """ |
| 1364 | self.set_x(xy[0]) |
| 1365 | self.set_y(xy[1]) |
| 1366 | |
| 1367 | def set_x(self, x): |
| 1368 | """ |
no test coverage detected