xxxxxxxxxx
19
function setup() {
createCanvas(800, 800);
}
function earth (xPosition, yPosition) {
fill('white');
textSize(50);
text('Hello World!', xPosition + 50, yPosition + 100);
fill('blue');
circle(xPosition + 200,yPosition + 250,200);
fill('green');
ellipse(xPosition + 200, yPosition + 220,130,100)
}
function draw() {
background(0);
earth(100,100);
}