This commit is contained in:
Loic Guegan 2021-10-04 11:04:37 +02:00
parent e0ed5e12d9
commit 18d860cff5
7 changed files with 34 additions and 0 deletions

7
public/css/bootstrap.min.css vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

BIN
public/images/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

7
public/js/bootstrap.min.js vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

3
public/js/p5.min.js vendored Normal file

File diff suppressed because one or more lines are too long

15
public/js/p5_custom.js Normal file
View file

@ -0,0 +1,15 @@
draw_arrow=function(p,x1,y1,x2,y2){
p.push()
p.strokeWeight(5)
p.line(x1,y1,x2,y2)
offset=5
var angle = p.atan2(y1 - y2, x1 - x2); //gets the angle of the line
p.translate(x2, y2); //translates to the destination vertex
p.rotate(angle-p.HALF_PI); //rotates the arrow point
p.triangle(-offset*0.8, offset, offset*0.8, offset, 0, -offset/2); //draws the arrow point as a triangle
p.pop();
// Return the center of the arrow
return(p.createVector(x1+(x2-x1)/2,y1+(y2-y1)/2))
}