Pixel-Composer/scripts/draw_line_round/draw_line_round.gml

16 lines
381 B
Text
Raw Normal View History

2022-01-13 11:24:03 +07:00
function draw_line_round(x1, y1, x2, y2, w) {
draw_line_width(x1, y1, x2, y2, w);
draw_circle(x1, y1, w/2, false);
draw_circle(x2, y2, w/2, false);
2022-01-29 20:25:18 +07:00
}
2023-03-05 13:16:44 +07:00
function draw_line_round_color(x1, y1, x2, y2, w, c1, c2) {
draw_line_width_color(x1, y1, x2, y2, w, c1, c2);
draw_set_color(c1);
draw_circle(x1, y1, w/2, false);
draw_set_color(c2);
draw_circle(x2, y2, w/2, false);
}