(self, x, y)
| 363 | return x,y |
| 364 | |
| 365 | def toWorld(self, x, y): |
| 366 | trans = self.trans |
| 367 | if trans: |
| 368 | return self.trans.world(x,y) |
| 369 | else: |
| 370 | return x,y |
| 371 | |
| 372 | def setMouseHandler(self, func): |
| 373 | self._mouseCallback = func |
no test coverage detected