-
Notifications
You must be signed in to change notification settings - Fork 0
/
sketch.js
26 lines (24 loc) · 826 Bytes
/
sketch.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
var fixedRect, movingRect;
function setup() {
createCanvas(800,400);
fixedRect = createSprite(200,200,50,80);
movingRect = createSprite(400,200,80,30);
fixedRect.shapeColor = "green";
movingRect.shapeColor = "green";
}
function draw() {
background(255,255,255);
movingRect.x = World.mouseX;
movingRect.y = World.mouseY;
if(movingRect.x - fixedRect.x <= movingRect.width/2 + fixedRect.width/2
&& movingRect.x - fixedRect.x >= -(fixedRect.width + movingRect.width)/2
&& movingRect.y - fixedRect.y <= movingRect.height/2 + fixedRect.height/2
&& movingRect.y - fixedRect.y >= -(fixedRect.height + movingRect.height)/2) {
fixedRect.shapeColor = "red";
movingRect.shapeColor = "red";
} else {
fixedRect.shapeColor = "green";
movingRect.shapeColor = "green";
}
drawSprites();
}