| Total Complexity | 2 |
| Total Lines | 11 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | from pypen import * |
||
| 2 | |||
| 3 | |||
| 4 | def start(): |
||
| 5 | settings.fps = 70 |
||
| 6 | |||
| 7 | |||
| 8 | def update(): |
||
| 9 | clear() |
||
| 10 | arc(WIDTH/2, HEIGHT/2, HEIGHT/4, PI*sin(TIME+1.6), PI*sin(TIME), fill_color=None, stroke_color="blue", stroke_width=5) |
||
| 11 |