xxxxxxxxxx
17
function setup() {
createCanvas(600, 400);
print(width, height);
rectMode(CENTER);
}
function draw() {
background("blue");
noStroke();
fill(255, 0, 0, 60);
ellipse(width/2, height/2, 80);
rect(100, 220, 300, 20);
stroke(255);
strokeWeight(4);
noFill();
triangle(300, 200, 350, 100, 400, 200);
}