SketchBook

function setup() {
createCanvas(700,700);
}
function draw(){
background(255,255,255);
point( 20,50 );
strokeWeight( 20 )
stroke( 0 ,255 ,0 );
fill(255 , 0 , 0 );
line(25,30,84,67);
strokeWeight(20 )
stroke( 0 , 255 , 0 );
fill( 255, 0 ,255, random(0,300) );
triangle(200,100,400,50,250,300);
strokeWeight( 20 )
stroke( 0 , 255 , 0 );
fill(0 , 0 , 255 );
rect( 130,400,200,100);
strokeWeight( 20 )
stroke( 0 , 255 , 0 );
fill(255 ,255 , 0 );
ellipse( 600 ,450 , 150 );
strokeWeight( 20 )
stroke( 0 , 255 , 0 );
fill(0 , 255 , 0 );
}