Hello, i have tried to draw white circle ,written several codes but it is not filling the above right side near the sun, and my base is not correct and i need to proceed.
- Read all the instructions carefully.
- Use the"scrubber" at the bottom of the window to step through the code. Turn on the inactive switch beside it to inspect the values.
- If you’re still stuck, post your code here for mentors to see.
hello Glen,// Sun
fill_color_hex(“yellow”)
circle(75, 30, 15)
// Cloud
fill_color_hex(“white”)
circle(25,50,10)
circle(40,40,15)
circle(50,40,15)
circle(40,50,10)
circle(55,50,10)
circle(40,50,10)
circle(40,40,5)
circle(75,50,10)
circle(70,40,10)
circle(35,35,10)
circle(35,30,5)
circle(30,50,10)
circle(70,45,15)
circle(75,40,5)
circle(75,35,5)
circle(25,50,5)
// Rain Drops
fill_color_hex(“blue”)
ellipse(30,70,3,5)
ellipse(50,70,3,5)
ellipse(40,80,3,5)
ellipse(60,80,3,5)
ellipse(70,70,3,5)
here is my code kindly show me where i am wrong.
@Bentrix It looks like you’ve got a lot too many cloud circles. You only need one rectangle and four circles to draw the cloud (click on this <<) . Use the coordinates that you get when you hover over the drawing canvas to work out where they go.