| 1 | module main |
| 2 | |
| 3 | import gg |
| 4 | |
| 5 | gg.start( |
| 6 | width: 300 |
| 7 | height: 300 |
| 8 | window_title: 'Circles' |
| 9 | frame_fn: fn (mut ctx gg.Context) { |
| 10 | ctx.begin() |
| 11 | ctx.draw_circle_empty(150, 150, 80, gg.blue) |
| 12 | ctx.draw_circle_filled(150, 150, 40, gg.yellow) |
| 13 | ctx.draw_circle_line(150, 150, 80, 6, gg.red) |
| 14 | ctx.draw_circle_line(150, 150, 120, 6, gg.green) |
| 15 | ctx.draw_circle_line(150, 150, 150, 8, gg.white) |
| 16 | ctx.end() |
| 17 | } |
| 18 | ) |
| 19 |