xxxxxxxxxx
35
function column(x,y, width, height){
this.x = x;
this.y = y;
this.width = width;
this.height = height;
}
let columList = [20];
function setup() {
createCanvas(400, 400);
for (var i = 0; i < 20;i++)
{
columList[i] = new column(i * 20, 0, 20, 400);
}
}
function draw() {
background(220);
for (var i = 0; i < 20;i++)
{
fill(255);
if (mouseX > columList[i].x &&
mouseX < columList[i].x + columList[i].width &&
mouseY > columList[i].y &&
mouseY < columList[i].y + columList[i].height)
{
fill(255,0,0);
}
rect(columList[i].x, columList[i].y,
columList[i].width,
columList[i].height);
}
}