xxxxxxxxxx
16
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
strokeWeight(3);
strokeCap(ROUND);
frameRate(1);
var d = random(75, 125);
triangle(d, d, d, 3*d, width - d, height - 3*d);
}