How to Create a Beautiful Rectangle Shape with LOGO Programming Commands
What LOGO commands would create a rectangle shape?
What shape would these commands draw: FD 100, RT 90, FD 50, RT 90, FD 100, RT 90, FD 50, RT 90?
Creating a Rectangle Shape with LOGO Commands
The LOGO programming commands listed create a rectangle with longer sides of 100 units and shorter sides of 50 units.
In the world of programming, LOGO is a language that allows users to give commands to a turtle graphic, which then creates shapes on the screen based on those commands. In this case, the commands provided will instruct the turtle to draw a rectangle.
Let's break down the sequence of commands:
- FD 100: This command moves the turtle forward 100 units.
- RT 90: The turtle then turns 90 degrees to the right.
- FD 50: The turtle moves forward 50 units.
- RT 90: Another right turn of 90 degrees.
- FD 100: The turtle moves forward another 100 units.
- RT 90: Another 90-degree right turn.
- FD 50: The turtle moves forward 50 units.
- RT 90: The final 90-degree right turn.
By following these commands, the turtle will draw a rectangle shape on the screen. The longer sides of the rectangle will have a length of 100 units, while the shorter sides will be 50 units long.