xxxxxxxxxx
34
class Subdivision {
constructor(_x, _y, _w, _h) {
this.x = _x;
this.y = _y;
this.w = _w;
this.h = _h;
this.rectangle = this.w !== this.h ? true : false;
this.divided = false;
}
show() {
if (this.rectangle) {
fill(blue);
rect(0, 0, W, H);
} else {
fill(white);
rect(this.x, this.y, W / PHI, H);
}
}
divide() {
print("Divided!");
this.divided = true;
subdivisions.push(new Subdivision(this.x,this.y,this.w,this.w));//square
subdivisions.push(new Subdivision(x,y,w,y));//rectangle
}
hovering() {
let vertical = true;
let horizontal = true;
return vertical && horizontal;
}
}