(self, bcp1, bcp2, p)
| 1171 | super().moveTo(p) |
| 1172 | |
| 1173 | def curveTo(self, bcp1, bcp2, p): |
| 1174 | bcp1 = self.translatePoint(bcp1) |
| 1175 | bcp2 = self.translatePoint(bcp2) |
| 1176 | p = self.translatePoint(p) |
| 1177 | super().curveTo(bcp1, bcp2, p) |
| 1178 | |
| 1179 | |
| 1180 | ''' |
no test coverage detected