1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

gg: additions, changes and fixes (#13255)

This commit is contained in:
Benjamin Stigsen
2022-01-23 17:18:17 +01:00
committed by GitHub
parent 34f0d442df
commit 4e0e2ef753
2 changed files with 164 additions and 120 deletions

24
vlib/gg/testdata/draw_circles.vv vendored Normal file
View File

@@ -0,0 +1,24 @@
module main
import gg
import gx
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, gx.blue)
ctx.draw_circle_filled(150, 150, 40, gx.yellow)
ctx.draw_circle_line(150, 150, 80, 6, gx.red)
ctx.draw_circle_line(150, 150, 120, 6, gx.green)
ctx.draw_circle_line(150, 150, 150, 8, gx.white)
ctx.end()
}