v/examples/gg/rectangles.v

51 lines
864 B
V
Raw Normal View History

module main
import gg
import gx
2020-03-07 14:14:37 +01:00
import os
const (
win_width = 600
win_height = 300
)
struct App {
mut:
2020-06-04 20:26:18 +02:00
gg &gg.Context
2020-08-02 17:01:07 +02:00
image gg.Image
}
fn main() {
2020-08-04 01:26:56 +02:00
mut app := &App{}
app.gg = gg.new_context(
bg_color: gx.white
width: win_width
height: win_height
use_ortho: true // This is needed for 2D drawing
create_window: true
2020-08-04 01:26:56 +02:00
window_title: 'Rectangles'
frame_fn: frame
2020-08-04 01:26:56 +02:00
init_fn: init_app
user_data: app
)
app.gg.run()
}
2020-08-04 01:26:56 +02:00
fn init_app(mut app App) {
app.image = gg.create_image('logo.png')
}
2020-08-02 17:01:07 +02:00
fn frame(app &App) {
app.gg.begin()
app.draw()
2020-08-02 17:01:07 +02:00
app.gg.end()
}
fn (app &App) draw() {
//app.gg.draw_text_def(200,20, 'hello world!')
//app.gg.draw_text_def(300,300, 'привет')
app.gg.draw_rect(10, 10, 100, 30, gx.blue)
2020-08-02 17:01:07 +02:00
app.gg.draw_empty_rect(110, 150, 80, 40, gx.black)
2020-08-04 01:26:56 +02:00
app.gg.draw_image(230,30,app.image.width,app.image.height, app.image)
}