xxxxxxxxxx
28
class Tile {
constructor(x, y, type, c) {
this.x = x;
this.y = y;
this.c = c;
this.type = type;
}
display() {
noFill();
strokeWeight(5);
stroke(this.c);
push();
translate(this.x, this.y);
if (this.type == 0) {
arc(0, 0, size, size, 0, 90);
arc(size, size, size, size, 180, 270);
} else {
arc(size, 0, size, size, 90, 180);
arc(0, size, size, size, 270, 360);
}
pop();
}
}