Pixel-Composer/scripts/draw_line_round/draw_line_round.gml

8 lines
155 B
Plaintext
Raw Normal View History

2022-01-13 05:24:03 +01: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 14:25:18 +01:00
}