-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtool.js
46 lines (42 loc) · 880 Bytes
/
tool.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
class Tool{
constructor(x, y){
this.x = x;
this.y = y;
this.width = 50;
this.height = 50;
this.color = {
'r':255,
'g':255,
'b':255
};
}
clicado(x, y){
if(
x > this.x && x < (this.width + this.x) &&
y > this.y && y < (this.height + this.y))
{
this.select();
return true;
}
}
select(){
this.color = {
'r':255,
'g':255,
'b':255
};
this.selected = true;
}
desSelect(){
this.color = {
'r':150,
'g':150,
'b':150
};
this.selected = false;
}
show(){
fill(this.color.r, this.color.g, this.color.b);
rect(this.x, this.y, this.width, this.height);
}
}