(self, p)
| 1194 | pass |
| 1195 | |
| 1196 | def lineTo(self, p): |
| 1197 | p = self.translatePoint(p) |
| 1198 | super().lineTo(p) |
| 1199 | |
| 1200 | def bezierPathByFlatteningPath(self, path): |
| 1201 | """TODO: Make our own version of the NSBezier flatten path function.""" |
no test coverage detected