xxxxxxxxxx
32
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
push();
translate(mouseX / 10, mouseY / 10);
for (let i = 0; i < 10; i++) {
for (let j = 0; j < 10; j++) {
stroke('red');
noFill();
text('world', i * 40, j * 40);
rect(i * 40, j * 40, 40, 40);
}
}
pop();
scale(0.8);
translate(mouseX / 50, mouseY / 50);
for (let i = 0; i < 10; i++) {
for (let j = 0; j < 10; j++) {
stroke('blue');
noFill();
text('hello', i * 40, j * 40);
rect(i * 40, j * 40, 40, 40);
}
}
}