xxxxxxxxxx
24
function setup() {
createCanvas(500, 500);
//ellipseMode(CORNER);
//rectMode(CENTER);
background(0,60,100);
}
function draw() {
fill(100,200,100);
stroke(250,250,0);
strokeWeight(5);
rect(100,133,66,255);//5th and more argument for roundness of corner
stroke(0,0,0);
line(50,50,200,385);
fill(200,200,180);
noStroke();
ellipse(50,50,30);
//noLoop();
}