1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/gg
2022-10-10 10:39:32 +03:00
..
m4 fmt: remove space in front of ? and ! (#14366) 2022-05-13 06:56:21 +03:00
testdata cgen: remove the need for [console] for gg or ui programs on windows (#15912) 2022-09-29 15:02:50 +03:00
draw_fns_api_test.v
draw.c.v gg: radius_to_segments() should use Context.scale (#15906) 2022-09-28 10:40:40 +03:00
enums.v
gg_android_outside_termux.c.v Revert "gg: fix android compilation for ~/.vmodules/ui/examples/rectangles.v" 2022-07-06 16:19:40 +03:00
gg_darwin.c.v
gg_darwin.m
gg_ui.c.v gg: rename Context.set_cfg() -> Context.set_text_cfg() (#15904) 2022-09-29 15:24:16 +03:00
gg.c.v checker: allow EnumName(number) casts only inside unsafe{} blocks (#15932) 2022-10-02 22:39:11 +03:00
gg.js.v all: voidptr(0) => unsafe { nil } (p.2) 2022-07-21 20:51:54 +03:00
gg.v
image.c.v Revert "stbi: fix loading image from memory (#15981); breaks UI's rectangle example on macos, probably others too" 2022-10-10 10:39:32 +03:00
image.js.v
image.v all: wrap up unsafe { nil } (p. 3) 2022-07-21 21:01:30 +03:00
import_gx.v
README.md
recorder.c.v
recorder.js.v
recorder.v
text_rendering.c.v gg: rename Context.set_cfg() -> Context.set_text_cfg() (#15904) 2022-09-29 15:24:16 +03:00
text_rendering.js.v
text_rendering.v

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()
}