v/vlib/gg/testdata/draw_circles.vv

24 lines
459 B
V

module main
import gg
fn main() {
mut context := gg.new_context(
width: 300
height: 300
window_title: 'Circles'
frame_fn: frame
)
context.run()
}
fn frame(mut ctx gg.Context) {
ctx.begin()
ctx.draw_circle_empty(150, 150, 80, gg.blue)
ctx.draw_circle_filled(150, 150, 40, gg.yellow)
ctx.draw_circle_line(150, 150, 80, 6, gg.red)
ctx.draw_circle_line(150, 150, 120, 6, gg.green)
ctx.draw_circle_line(150, 150, 150, 8, gg.white)
ctx.end()
}