mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-12-25 14:36:13 +01:00
6 lines
153 B
Text
6 lines
153 B
Text
|
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);
|
||
|
}
|