-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtools.js
84 lines (70 loc) · 1.2 KB
/
tools.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
let cvs = document.getElementById("cvs"),
c = cvs.getContext("2d"),
width = window.innerWidth,
height = window.innerHeight;
// Setting up the canvas
cvs.width = String(width);
cvs.height = String(height);
cvs.style.width = String(width) + "px";
cvs.style.height = String(height) + "px";
// Draws a line
function line(x1, y1, x2, y2)
{
c.beginPath();
c.moveTo(x1, y1);
c.lineTo(x2, y2);
c.stroke();
}
// Fills a circle
function fillCircle(x, y, r)
{
c.beginPath();
c.arc(x, y, r, -Math.PI, Math.PI);
c.fill();
}
// Useful functions
function sqrt(n) { return Math.sqrt(n); }
function random(min, max) { return min+(Math.random()*(max-min)); }
// Distance function
function dist(v1, v2)
{
let dx = v1.x - v2.x;
let dy = v1.y - v2.y;
return sqrt(dx*dx + dy*dy);
}
// 2D Vector class
class Vec2
{
constructor(x, y)
{
this.x = x;
this.y = y;
}
add(v)
{
this.x += v.x;
this.y += v.y;
}
sub(v)
{
this.x -= v.x;
this.y -= v.y;
}
mult(n)
{
this.x *= n;
this.y *= n;
}
get()
{
return new Vec2(this.x, this.y);
}
}
function sin(n)
{
return Math.sin(n);
}
function cos(n)
{
return Math.cos(n);
}