Set coordinates of window to run from (x1,y1) in the lower-left corner to (x2,y2) in the upper-right corner.
(self, x1, y1, x2, y2)
| 276 | #self.config(bg=color) |
| 277 | |
| 278 | def setCoords(self, x1, y1, x2, y2): |
| 279 | """Set coordinates of window to run from (x1,y1) in the |
| 280 | lower-left corner to (x2,y2) in the upper-right corner.""" |
| 281 | self.trans = Transform(self.width, self.height, x1, y1, x2, y2) |
| 282 | |
| 283 | def close(self): |
| 284 | if self.closed: return |
no test coverage detected