World positions of all pins, in PIN_POSITIONS order.
(self)
| 696 | return path |
| 697 | |
| 698 | def pin_scene_pos(self) -> list[QPointF]: |
| 699 | """World positions of all pins, in PIN_POSITIONS order.""" |
| 700 | return [ |
| 701 | self.mapToScene(QPointF(lx, ly)) |
| 702 | for lx, ly in PIN_POSITIONS.get(self.symbol_name, []) |
| 703 | ] |
| 704 | |
| 705 | def reload_svg(self, svg_bytes: bytes) -> None: |
| 706 | """Swap this instance's artwork for a freshly loaded symbol definition. |
no outgoing calls
no test coverage detected