(self, node: dpg.node, ex: float, ey: float, ctf: CoordTF)
| 508 | self.radius = radius |
| 509 | |
| 510 | def plotArea(self, node: dpg.node, ex: float, ey: float, ctf: CoordTF): |
| 511 | cx, cy = ctf.qtCoord(self.x, self.y, ex, ey) |
| 512 | dpg.draw_circle( |
| 513 | (cx, cy), |
| 514 | ctf.zoomScale*self.radius, |
| 515 | thickness=0, |
| 516 | fill=(243, 156, 18, 20), |
| 517 | parent=node |
| 518 | ) |