Set resolution in both dimensions.
(self, xres, yres)
| 13999 | return barray |
| 14000 | |
| 14001 | def set_dpi(self, xres, yres): |
| 14002 | """Set resolution in both dimensions.""" |
| 14003 | pm = self.this |
| 14004 | pm.m_internal.xres = xres |
| 14005 | pm.m_internal.yres = yres |
| 14006 | |
| 14007 | def set_origin(self, x, y): |
| 14008 | """Set top-left coordinates.""" |
no outgoing calls
no test coverage detected