SketchBook

function setup() {
createCanvas(700,700);
}
function draw() {
background(0,0,0);
point(500,200);
line(300,200,100,400);
stroke(255,0,255);
triangle(300,400,250,400,300,700);
fill(0,255,0,random(0,500));
ellipse(345,300,40);
fill(0,0,128,random(0,200));
rect(435,534,250,123);
fill(0,255,255,random(0,300));
strokeWeight(12);
stroke(153,50,204);
fill(0,255,0,random(0,500));
}