xxxxxxxxxx
49
function setup() {
createCanvas(1500, 1500);
}
function draw() {
background(153,153,255);
//Stem and Leaves//
stroke(0,102,51);
fill(0,153,76);
strokeWeight(75);
line(700,700,1200,1500);
strokeWeight(3);
arc(480, 500, 800, 800, 0, PI + QUARTER_PI, PIE);
arc(1100, 680, 800, 800, 0, PI + QUARTER_PI, PIE);
arc(1140, 430, 700, 600, 0, PI + QUARTER_PI, PIE);
arc(840, 997, 800, 700, 90, PI + QUARTER_PI, PIE);
//Petals//
strokeWeight(3);
stroke(153,0,0);
fill(154,0,0);
ellipse(500,300,450,400);
ellipse(910,370,580,560);
fill(255,51,51);
ellipse(700,300,350,450);
fill(154,0,0);
ellipse(950,500,500,400);
fill(255,51,51);
ellipse(950,600,450,550);
ellipse(750,730,370,580);
fill(154,0,0);
ellipse(520,720,440,460);
fill(255,51,51);
ellipse(640,790,470,370);
ellipse(450,560,570,480);
ellipse(850,400,520,470);
ellipse(520,400,460,450);
ellipse(870,740,510,430);
//Pistil//
stroke(255,128,0);
fill(255,255,0);
ellipse(700,540,260,250);
ellipse(600,430,100,100);
ellipse(740,430,100,100);
ellipse(690,520,100,100);
ellipse(600,570,100,100);
ellipse(720,640,100,100);
ellipse(750,570,100,100);
ellipse(760,520,100,100);
}