(self)
| 126 | self.init() |
| 127 | |
| 128 | def init(self): |
| 129 | points.clear() |
| 130 | # 链接的最小距离 |
| 131 | self.linkDist = min(self.screenWidth, self.screenHeight) / 2.4 |
| 132 | # 初始化点 |
| 133 | for _ in range(maxCircles * 3): |
| 134 | points.append(Circle('', self.screenWidth, self.screenHeight)) |
| 135 | self.update() |
| 136 | |
| 137 | def showEvent(self, event): |
| 138 | super(CircleLineWindow, self).showEvent(event) |