MCPcopy Create free account
hub / github.com/PageBot/PageBot / moveTo

Method moveTo

Lib/pagebot/contexts/svgcontext/svgcontext.py:184–189  ·  view source on GitHub ↗

Move to point `p` in the open path. Create a new self._bezierpath if none is open.

(self, p)

Source from the content-addressed store, hash-verified

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

Callers 14

drawRegistrationMarkFunction · 0.45
drawCropMarksFunction · 0.45
drawArrowFunction · 0.45
buildMethod · 0.45
buildMethod · 0.45
drawArrowMethod · 0.45
drawFlowConnectionsMethod · 0.45
drawArrowMethod · 0.45
drawMethod · 0.45
drawMethod · 0.45

Calls 1

translatePointMethod · 0.45

Tested by

no test coverage detected