2019-07-19 13:15:47 +02:00
|
|
|
module main
|
|
|
|
|
|
|
|
import gx
|
|
|
|
import gg
|
2020-08-30 18:11:59 +02:00
|
|
|
import sokol.sapp
|
2019-09-23 12:42:20 +02:00
|
|
|
import time
|
2019-12-09 16:53:17 +01:00
|
|
|
import math
|
2019-09-23 12:42:20 +02:00
|
|
|
|
2019-07-19 13:15:47 +02:00
|
|
|
const (
|
2020-05-22 17:36:09 +02:00
|
|
|
size = 700
|
2020-08-29 09:14:25 +02:00
|
|
|
scale = 50.0
|
2019-07-19 13:15:47 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
struct Context {
|
2020-08-29 09:14:25 +02:00
|
|
|
mut:
|
2020-06-04 20:26:18 +02:00
|
|
|
gg &gg.Context
|
2019-07-19 13:15:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2020-08-29 09:14:25 +02:00
|
|
|
mut context := &Context{
|
|
|
|
gg: 0
|
2019-07-19 13:15:47 +02:00
|
|
|
}
|
2020-08-29 09:14:25 +02:00
|
|
|
context.gg = gg.new_context({
|
|
|
|
width: size
|
|
|
|
height: size
|
|
|
|
font_size: 20
|
|
|
|
use_ortho: true
|
|
|
|
user_data: context
|
|
|
|
window_title: 'Graph builder'
|
|
|
|
create_window: true
|
|
|
|
frame_fn: frame
|
2020-08-30 18:11:59 +02:00
|
|
|
resizable: true
|
2020-08-29 09:14:25 +02:00
|
|
|
bg_color: gx.white
|
|
|
|
font_path: gg.system_font_path()
|
|
|
|
})
|
|
|
|
context.gg.run()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn frame(mut ctx Context) {
|
|
|
|
ctx.gg.begin()
|
|
|
|
ctx.draw()
|
|
|
|
ctx.gg.end()
|
2019-07-19 13:15:47 +02:00
|
|
|
}
|
|
|
|
|
2020-01-16 00:07:59 +01:00
|
|
|
[live]
|
2019-07-20 17:38:00 +02:00
|
|
|
fn (ctx &Context) draw() {
|
2020-08-30 18:58:09 +02:00
|
|
|
mut w := sapp.width()
|
|
|
|
mut h := sapp.height()
|
|
|
|
if sapp.high_dpi() {
|
|
|
|
w /= 2
|
|
|
|
h /= 2
|
|
|
|
}
|
2020-08-30 18:11:59 +02:00
|
|
|
ctx.gg.draw_line(0, h/2, w, h/2, gx.gray) // x axis
|
|
|
|
ctx.gg.draw_line(w/2, 0, w/2, h, gx.gray) // y axis
|
2020-08-29 09:14:25 +02:00
|
|
|
atime := f64(time.ticks() / 10)
|
2020-08-30 18:11:59 +02:00
|
|
|
stime := math.sin(2.0 * math.pi * f64(time.ticks() % 6000) / 6000)
|
2019-09-28 19:42:29 +02:00
|
|
|
mut y := 0.0
|
2020-08-30 18:11:59 +02:00
|
|
|
blue := gx.Color {r:100, g:100, b:200}
|
|
|
|
red := gx.Color {r:200, g:100, b:100}
|
2019-12-09 16:53:17 +01:00
|
|
|
y = 1.0
|
2020-08-30 18:58:09 +02:00
|
|
|
max := f32(w)/(2*scale)
|
2020-08-30 18:11:59 +02:00
|
|
|
min := -max
|
|
|
|
for x := min; x <= max; x += 0.01 {
|
2020-08-29 09:14:25 +02:00
|
|
|
// y = x*x + 2
|
2020-08-30 18:11:59 +02:00
|
|
|
// y = x * x + stime * stime
|
2020-08-29 09:14:25 +02:00
|
|
|
// y = stime
|
2020-08-30 18:11:59 +02:00
|
|
|
// y = stime * h
|
|
|
|
y = stime * 1.0 * math.sin((x) + stime + atime / 32) * ((h/256) + x)
|
2020-08-29 09:14:25 +02:00
|
|
|
// y = (stime * x) * x + stime
|
|
|
|
// y = (x + 3) * (x + 3) / stime + stime*2.5
|
|
|
|
// y = math.sqrt(30.0 - x * x) * stime
|
|
|
|
// y -= (stime-0.5) + stime
|
2020-08-30 18:11:59 +02:00
|
|
|
// ctx.gg.draw_rect(f32((w/2) + x * scale), f32((h/2) - y * scale), 2, 2, blue)
|
|
|
|
ctx.gg.draw_rect(f32((w/2) + x * scale), f32((h/2) - y * scale), 2, (f32(y) * scale), blue)
|
|
|
|
ctx.gg.draw_rect(f32((w/2) + x * scale), f32((h/2) + y * scale), 2, (f32(y) * scale) + 32, red)
|
2019-07-19 13:15:47 +02:00
|
|
|
}
|
|
|
|
}
|