(parent, item, fill, radius)
| 209 | |
| 210 | |
| 211 | def _junction(parent, item, fill, radius): |
| 212 | el = ET.SubElement(parent, f"{{{_SVG_NS}}}circle") |
| 213 | el.set("cx", f"{item.pos().x():.2f}") |
| 214 | el.set("cy", f"{item.pos().y():.2f}") |
| 215 | el.set("r", f"{radius:.2f}") |
| 216 | el.set("fill", fill) |
| 217 | |
| 218 | |
| 219 | def _border_rect(parent, item): |