xxxxxxxxxx
36
function setup() {
createCanvas(600, 400);
}
function draw() {
background(255,200,200);
// HILL Drawing
fill(100,100,255);
circle(300,300,600);
// SUN Drawing
noStroke();
let sunX = 300;
let sunY = 100;
// red circle
fill(255,100,100);
circle(sunX,sunY,180);
// orange circle
fill(255,150,100);
circle(sunX,sunY,140);
// yellow circle
fill(255,200,100);
circle(sunX,sunY,100);
textSize(20);
text("HELLO WORLD", 100,100)
}