xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(100);
}
function draw() {
//background (100);
stroke (255);
//nostroke ();
fill (255, 0, 255);
noFill();
triangle(mouseX, mouseY, 20, 20);
rect (0,0, 200, 200)
}