Blockly Games Turtle Level 9 Solution [exclusive] -
Alternative: Some solutions suggest turning and moving backwards by 20 ; both are often accepted by the game. Draw the Shadow: Put the pen back down with pen down . Set the colour to black. Draw another circle with a radius of 50 .
: Use the set colour block to switch between white (for the moon) and black (for the background/mask).
The objective is to draw a spiral that changes color, typically resembling a square spiral that winds outward. blockly games turtle level 9 solution
Let’s validate:
After solving Level 9, you are ready for – the final Turtle challenge. Level 10 typically requires a loop with a variable that changes each iteration, teaching you counter variables and incremental geometry (like gradually increasing line lengths to draw a spiral). Draw another circle with a radius of 50
To solve Level 9, you need to understand three core programming concepts: , Loops , and Arithmetic .
: Start by setting the pen color to white. Use a repeat block (360 times) with a move forward (1 unit) and a turn right (1 degree) to create a perfect circle. Let’s validate: After solving Level 9, you are
The level starts with the Turtle facing a full white circle. To create a crescent moon, you must draw a black circle
: You must use repeat blocks to handle the 360-degree turns efficiently.