(radius)
| 37 | register_shape(name, hand_form) |
| 38 | |
| 39 | def clockface(radius): |
| 40 | reset() |
| 41 | pensize(7) |
| 42 | for i in range(60): |
| 43 | jump(radius) |
| 44 | if i % 5 == 0: |
| 45 | fd(25) |
| 46 | jump(-radius-25) |
| 47 | else: |
| 48 | dot(3) |
| 49 | jump(-radius) |
| 50 | rt(6) |
| 51 | |
| 52 | def display_date_time(): |
| 53 | global current_day |