1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/gg
2022-04-27 22:57:48 +03:00
..
m4 gg: document pub functions in text_rendering and m4/vector (#13961) 2022-04-06 19:34:02 +03:00
testdata tests: use u8 everywhere 2022-04-15 18:34:15 +03:00
draw_fns_api_test.v
draw.c.v gg: improve some loops in draw_rounded_rect* methods (#14195) 2022-04-27 22:57:48 +03:00
enums.v
gg_android.c.v gg: add missing doc strings to android, recorder and gg.c.v (#13936) 2022-04-05 18:42:01 +03:00
gg_darwin.c.v
gg_darwin.m
gg_ui.c.v gg: some stuff required to have svg and png screenshots working on v ui (#14180) 2022-04-26 20:59:36 +03:00
gg.c.v all: ~500 more byte=>u8 2022-04-15 18:25:45 +03:00
gg.js.v all: ~500 more byte=>u8 2022-04-15 18:25:45 +03:00
gg.v
image.c.v all: ~500 more byte=>u8 2022-04-15 18:25:45 +03:00
image.js.v
image.v
import_gx.v
README.md
recorder.c.v gg: add missing doc strings to android, recorder and gg.c.v (#13936) 2022-04-05 18:42:01 +03:00
recorder.js.v
recorder.v
text_rendering.c.v all: replace []byte with []u8 2022-04-15 15:35:35 +03:00
text_rendering.js.v
text_rendering.v all: replace []byte with []u8 2022-04-15 15:35:35 +03:00

Description:

gg is V's simple graphics module. It is currently implemented using sokol, and makes easy creating apps that just need a way to draw simple 2D shapes, and to react to user's keyboard/mouse input.

Example:

module main

import gg
import gx

fn main() {
	mut context := gg.new_context(
		bg_color: gx.rgb(174, 198, 255)
		width: 600
		height: 400
		window_title: 'Polygons'
		frame_fn: frame
	)
	context.run()
}

fn frame(mut ctx gg.Context) {
	ctx.begin()
	ctx.draw_convex_poly([f32(100.0), 100.0, 200.0, 100.0, 300.0, 200.0, 200.0, 300.0, 100.0, 300.0],
		gx.blue)
	ctx.draw_poly_empty([f32(50.0), 50.0, 70.0, 60.0, 90.0, 80.0, 70.0, 110.0], gx.black)
	ctx.draw_triangle_filled(450, 142, 530, 280, 370, 280, gx.red)
	ctx.end()
}