Get the (possibly unit converted) transformed x, y in display coords.
(self)
| 292 | return inside, cattr |
| 293 | |
| 294 | def _get_xy_display(self): |
| 295 | """ |
| 296 | Get the (possibly unit converted) transformed x, y in display coords. |
| 297 | """ |
| 298 | x, y = self.get_unitless_position() |
| 299 | return self.get_transform().transform((x, y)) |
| 300 | |
| 301 | def _get_multialignment(self): |
| 302 | if self._multialignment is not None: |
no test coverage detected