:type width: int :param width: 线条宽度
(self, width)
| 54 | self._fps = max(int(fps), 1) if isinstance(fps, (int, float)) else 60 |
| 55 | |
| 56 | def setLineWidth(self, width): |
| 57 | """ |
| 58 | :type width: int |
| 59 | :param width: 线条宽度 |
| 60 | """ |
| 61 | self._lineWidth = max(int(width), 0) if isinstance(width, |
| 62 | (int, float)) else 50 |
| 63 | |
| 64 | def setRadius(self, radius): |
| 65 | """ |