2017-10-03 18:38:09 +00:00
|
|
|
package allegro5
|
|
|
|
|
|
|
|
// #include <allegro5/allegro.h>
|
|
|
|
// #include <allegro5/allegro_primitives.h>
|
|
|
|
import "C"
|
|
|
|
|
|
|
|
func DrawLine(x1, y1, x2, y2 float32, c Color, thickness float32) {
|
|
|
|
C.al_draw_line(C.float(x1), C.float(y1), C.float(x2), C.float(y2), c.color, C.float(thickness))
|
|
|
|
}
|
2017-10-23 09:18:24 +00:00
|
|
|
|
|
|
|
func DrawRectangle(x1, y1, x2, y2 float32, c Color, thickness float32) {
|
|
|
|
C.al_draw_rectangle(C.float(x1), C.float(y1), C.float(x2), C.float(y2), c.color, C.float(thickness))
|
|
|
|
}
|
|
|
|
|
|
|
|
func DrawFilledRectangle(x1, y1, x2, y2 float32, c Color) {
|
|
|
|
C.al_draw_filled_rectangle(C.float(x1), C.float(y1), C.float(x2), C.float(y2), c.color)
|
|
|
|
}
|