xxxxxxxxxx
23
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
}
class NumberBox{
constructor(i,col_num,col){
this.num=pow(2,i);
this.col_num=col_num;
this.col=col
}
moveDown(){
}
}