prog8/examples/line-circle-gfx.p8

34 lines
755 B
Plaintext
Raw Normal View History

%import graphics
; TODO make graphics lib cross-system
2020-03-28 11:33:16 +00:00
main {
sub start() {
graphics.enable_bitmap_mode()
draw_lines()
draw_circles()
repeat {
2020-03-28 11:33:16 +00:00
}
}
sub draw_circles() {
ubyte xx
for xx in 3 to 7 {
graphics.circle(xx*50-100, 10+xx*16, (xx+6)*4)
graphics.disc(xx*50-100, 10+xx*16, (xx+6)*2)
}
}
sub draw_lines() {
ubyte i
for i in 0 to 255 step 4 {
2020-03-28 16:06:17 +00:00
uword x1 = ((320-256)/2 as uword) + sin8u(i)
2020-03-28 11:33:16 +00:00
uword y1 = (200-128)/2 + cos8u(i)/2
2020-03-28 16:06:17 +00:00
uword x2 = ((320-64)/2 as uword) + sin8u(i)/4
2020-03-28 11:33:16 +00:00
uword y2 = (200-64)/2 + cos8u(i)/4
graphics.line(x1, lsb(y1), x2, lsb(y2))
}
}
}