(radius)
| 41 | register_shape(name, hand_form) |
| 42 | |
| 43 | def clockface(radius): |
| 44 | reset() |
| 45 | pensize(7) |
| 46 | for i in range(60): |
| 47 | jump(radius) |
| 48 | if i % 5 == 0: |
| 49 | fd(25) |
| 50 | jump(-radius-25) |
| 51 | else: |
| 52 | dot(3) |
| 53 | jump(-radius) |
| 54 | rt(6) |
| 55 | |
| 56 | def setup(): |
| 57 | global second_hand, minute_hand, hour_hand, writer |