| Total Complexity | 2 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | from pypen import * |
||
| 2 | |||
| 3 | |||
| 4 | def start(): |
||
| 5 | settings.fps = 60 |
||
| 6 | |||
| 7 | |||
| 8 | def update(): |
||
| 9 | fill_screen("orange") |
||
| 10 | ellipse(50, 40, 50, 30, "red", "blue", 3) |
||
| 11 | |||
| 12 | ellipse(200, 200, 30, 50, stroke_width=10) |
||
| 13 | |||
| 14 | ellipse(400, 400, 30, 100, "green") |
||
| 15 |