SketchBook

割といい方の普通の感情

function setup() {
createCanvas(600, 600);
strokeWeight(0);
background(255, 255, 255);
}

function draw() {

fill(235,235,235,30);
triangle(180,100,0,200,200,300);

noStroke();

fill(235,235,235,30);
triangle(0,470,180,580,200,400);

noStroke();

fill(235,235,235,30);
triangle(320,380,500,200,600,450);

noStroke();

fill(146,206,208,30);
rect(0,0,200,200);

noStroke();

fill(254,255,198,30);
rect(400,400,200,200);

noStroke();

fill(229,211,202,30);
rect(250,0,350,350);

noStroke();

fill(174,228,235,30);
rect(0,250,350,350);

noStroke();

}