xxxxxxxxxx
46
step = 0;
column = [];
row = [];
function setup() {
column = [];
createCanvas(600, 600);
step = width / 20;
for(var i = 0; i < step; i ++){
var c = (random(0, 1) < 0.5) ? 0 : 1;
var r = (random(0, 1) < 0.5) ? 0 : 1;
column.push(c);
row.push(r);
}
}
function draw() {
noLoop();
background(255);
print(column);
for(var i = 0; i < step; i ++){
for(var j = 0; j < step; j++){
// if(i == 0 || j == 0){
// textAlign(CENTER);
// text(column[i], i * step, 10);
// text(row[j], 10, step * j);
// }
// else{
if(column[i] && j % 2 == 1){
line(i * step, j * step, i * step, (j +1) * step);
}
if(!column[i] && j % 2 == 0){
line(i * step, j * step, i * step, (j +1) * step);
}
if(row[j] && i % 2 == 1){
line(i * step, j * step, (i + 1)* step, j * step);
}
if(!row[j] && i % 2 == 0){
line(i * step, j * step, (i + 1) * step, j* step);
}
// }
}
}
}