xxxxxxxxxx
33
let clockSize =10;
function Clock(x, y) {
this.x = x
this.y = y
this.draw = function() {
ellipseMode(CENTER);
stroke(1)
ellipse(this.x, this.y, clockSize)
}
}
function Display(x, y, digit) {
this.x = x;
this.y = y;
this.digit = digit;
this.clocks = []
this.draw = function(){
for (let i = 0; i < 4; i++) {
for (let j = 0; j < 6; j++) {
this.clocks.push(new Clock(this.x-(i * clockSize), this.y-clockSize/2-(j * clockSize)))
}
}
for (let clock of this.clocks) {
clock.draw();
}
}
}