mirror of
https://github.com/vlang/v.git
synced 2025-09-12 08:57:09 -04:00
26 lines
598 B
V
26 lines
598 B
V
module main
|
|
|
|
import gg
|
|
import os
|
|
|
|
fn main() {
|
|
scount := os.args[1] or { '2' }.int()
|
|
println('> sample count: ${scount}')
|
|
mut ctx := gg.new_context(
|
|
bg_color: gg.white
|
|
window_title: 'sample_count: ${scount}'
|
|
width: 320
|
|
height: 240
|
|
sample_count: scount
|
|
frame_fn: fn (mut ctx gg.Context) {
|
|
ctx.begin()
|
|
ctx.draw_rounded_rect_empty(110, 70, 100, 100, 10, gg.blue)
|
|
ctx.draw_circle_empty(160, 120, 100, gg.red)
|
|
ctx.draw_triangle_empty(160, 93, 186, 138, 132, 138, gg.green)
|
|
ctx.draw_rect_filled(159, 119, 2, 2, gg.black)
|
|
ctx.end()
|
|
}
|
|
)
|
|
ctx.run()
|
|
}
|