xxxxxxxxxx
16
function setup() {
createCanvas(400, 400);
}
function draw() {
background(0, 255, 120);
strokeWeight(1);
colorMode(HSB);
fill(150, 255, 156);
rectMode(CENTER);
rect(199, 199, 100, 100);
strokeWeight(32.0);
strokeCap(ROUND);
line(20, 30, 80, 30);
}