xxxxxxxxxx
30
let sunX = 0
function setup() {
createCanvas(400, 400);
colorMode(HSB)
x=280
}
function draw() {
background(100, 100, 0);
fill(70,70,70,)
circle(sunX,100,100 )
sunX = (sunX + 3) % width
print(sunX)
fill(x,x+30, mouseY)
ellipse(200,250,150,70)
fill(180,180,180)
ellipse(50,400,400,250)
fill(120,120,120)
noStroke
triangle(20,277,50,200,80,277)
fill("white")
point(random,400,400)
}