xxxxxxxxxx
41
class Obj {
constructor(x, y) {
this.x = x
this.y = y
this.l = width / 40;
}
display() {
push();
rectMode(CORNERS);
translate(this.x, this.y);
rect(-this.l, -this.l, this.l,this.l);
for(var i = 0; i < 5; i ++){
rotate(30);
rect(-this.l, -this.l, this.l,this.l);
}
pop();
}
}
list_objs = [];
function setup() {
createCanvas(600, 600);
var step = height / 11;
for(var i = 0; i <= height; i+= step){
for(var j = 0; j <= width; j+= step){
list_objs.push(new Obj(i, j));
}
}
}
function draw() {
noLoop();
background(220);
for(var i = 0; i < list_objs.length; i++){
list_objs[i].display();
}
}