Returns a tuple with top-left window corner's coordinates, (x, y).
(self)
| 211 | |
| 212 | @property |
| 213 | def position(self): |
| 214 | """Returns a tuple with top-left window corner's coordinates, (x, y).""" |
| 215 | with self._context.make_current() as ctx: |
| 216 | return ctx.call(glfw.get_window_pos, self._context.window) |
| 217 | |
| 218 | @property |
| 219 | def keyboard(self): |
nothing calls this directly
no test coverage detected