(seconds=1, location=(0, 0))
| 113 | return _aximeta |
| 114 | |
| 115 | def dip_pen(seconds=1, location=(0, 0)): |
| 116 | return (P() |
| 117 | .ch(aximeta(lambda ad: ad |
| 118 | .moveto(*location) |
| 119 | .pendown() |
| 120 | .sleep(seconds) |
| 121 | .penup() |
| 122 | .moveto(0, 0)))) |
| 123 | |
| 124 | |
| 125 | class NextDrawChainable(): |