MCPcopy Create free account
hub / github.com/coldtype/coldtype / NextDrawChainable

Class NextDrawChainable

examples/axidraw/nextdraw.py:125–143  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

123
124
125class NextDrawChainable():
126 def __init__(self, ad):
127 self.ad = ad
128
129 def moveto(self, x, y):
130 self.ad.moveto(x, y)
131 return self
132
133 def penup(self):
134 self.ad.penup()
135 return self
136
137 def pendown(self):
138 self.ad.pendown()
139 return self
140
141 def sleep(self, t):
142 sleep(t)
143 return self
144
145
146class nextdrawing(renderable):

Callers 1

walkerMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected