2020 p5.js exercise
function setup() {
createCanvas(500, 400);
background(242,235,191);
noStroke();
fill(242,181,98);
quad(90,40,30,40,20,200,100,230);
fill(140,189,177);
quad(99,290,340,340,350,200,190,140);
fill(239,96,96)
quad(400,190,450,35,390,40,260,140);
fill(239,96,96);
rect(50,350,200,60);
fill(140,189.177);
rect(125,10,170,80);
fill(242,181,98);
rect(390,230,70,150);
}
function draw() {
}
Comments
Post a Comment