Move to point `p` in the open path. Create a new self._bezierpath if none is open.
(self, p)
| 182 | return self._bezierpath |
| 183 | |
| 184 | def moveTo(self, p): |
| 185 | """Move to point `p` in the open path. Create a new self._bezierpath if none |
| 186 | is open. |
| 187 | """ |
| 188 | p = self.translatePoint(p) |
| 189 | super().moveTo(p) |
| 190 | |
| 191 | def lineTo(self, p): |
| 192 | """Line to point p in the open path. Create a new self._bezierpath if none |
no test coverage detected