mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-11 04:54:06 +01:00
42 lines
1.5 KiB
Plaintext
42 lines
1.5 KiB
Plaintext
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);
|
|
}
|
|
|
|
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);
|
|
}
|
|
|
|
function draw_line_round_arrow(x1, y1, x2, y2, w, as = 4) {
|
|
draw_line_round(x1, y1, x2, y2, w);
|
|
|
|
var a = point_direction(x1, y1, x2, y2);
|
|
draw_triangle(x2 + lengthdir_x(as * w, a + 120 * 0), y2 + lengthdir_y(as * w, a + 120 * 0),
|
|
x2 + lengthdir_x(as * w, a + 120 * 1), y2 + lengthdir_y(as * w, a + 120 * 1),
|
|
x2 + lengthdir_x(as * w, a + 120 * 2), y2 + lengthdir_y(as * w, a + 120 * 2),
|
|
false);
|
|
}
|
|
|
|
function draw_line_round_arrow_scale(x1, y1, x2, y2, w, as = 4) {
|
|
draw_line_round(x1, y1, x2, y2, w);
|
|
|
|
var a = point_direction(x1, y1, x2, y2) + 45;
|
|
|
|
draw_triangle(x2 + lengthdir_x(as * w, a + 90 * 0), y2 + lengthdir_y(as * w, a + 90 * 0),
|
|
x2 + lengthdir_x(as * w, a + 90 * 1), y2 + lengthdir_y(as * w, a + 90 * 1),
|
|
x2 + lengthdir_x(as * w, a + 90 * 2), y2 + lengthdir_y(as * w, a + 90 * 2),
|
|
false);
|
|
|
|
draw_triangle(x2 + lengthdir_x(as * w, a + 90 * 0), y2 + lengthdir_y(as * w, a + 90 * 0),
|
|
x2 + lengthdir_x(as * w, a + 90 * 2), y2 + lengthdir_y(as * w, a + 90 * 2),
|
|
x2 + lengthdir_x(as * w, a + 90 * 3), y2 + lengthdir_y(as * w, a + 90 * 3),
|
|
false);
|
|
} |