answersLogoWhite

0

this command allows the turtle to turn its head in any direction

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What is SETH command used for in logo?

SETCH command is used to point the command its head in any direction without using the RT or LT.


What programming language is known for its turtle graphics?

Logo


How do you make a car on msw logo?

To draw a car in MSW Logo you need to type in commands to control the turtle and draw the image. Common command to control directions of the turtle, and thus draw the car, are fd Ã? forward, lt Ã? left, and rt Ã? right. By including a number with these commands you are telling the turtle the length of the line you would like it to draw.


How do you draw a sun set on mswlogo?

Here are the steps on how to draw a sunset on MSW Logo: Start by creating a new window and setting the background color to blue. Use the fd command to draw a horizon line across the bottom of the screen. Use the seth command to set the turtle's heading to 270 degrees. Use the pd command to put the turtle in pen down mode. Use the repeat loop to draw a series of orange and yellow lines for the sun. Use the seth command to set the turtle's heading to 0 degrees. Use the pd command to put the turtle in pen down mode. Use the repeat loop to draw a series of red and pink lines for the sky. Use the ht command to hide the turtle. Here is an example of the code you can use to draw a sunset on MSW Logo: set background blue fd 400 seth 270 pd repeat 100 { fd 10 sethue orange fd 10 sethue yellow } seth 0 pd repeat 100 { fd 10 sethue red fd 10 sethue pink } ht This code will create a sunset with a orange and yellow sun and a red and pink sky. You can adjust the code to change the colors of the sun and sky, as well as the size of the sunset. Here are some additional tips for drawing a sunset on MSW Logo: Use the sethue command to change the color of the turtle's pen. Use the repeat loop to repeat a series of commands. Use the seth command to set the turtle's heading. Use the pd command to put the turtle in pen down mode. Use the ht command to hide the turtle. With a little practice, you can learn to draw beautiful sunsets on MSW Logo.


How do you draw hexagon using repeat command of logo?

To draw a hexagon using the repeat command in Logo, you can use the following code: repeat 6 [forward 100 right 60] This command will move the turtle forward by 100 units and then turn it right by 60 degrees, repeating this process six times to create a hexagon. Adjust the forward distance to change the size of the hexagon.


What are the 10 LOGO commands?

FD - moves the turtle forward BK - moves the turtle backwards CS - cleans the screen PE - deleting the turtle's data Lt - Rotates the turtle left Rt - rotates the turtle Right Pd - Pen Down Pu - Pen up repeat - repeats a command (example: repeat 4 [FD 50 rt 50] end


Which programming language uses a mouse pointer shaped in the form of turtle?

Logo


How do you make a bus in MSW logo?

To create a bus in MSW Logo, you can use simple shapes and commands. Start by using the REPEAT command to create the rectangular body of the bus, followed by adding wheels using circles with the CIRCLE command. You can add windows and details using the PENUP and PENDOWN commands to position the turtle appropriately. Finally, use the FILL command to color your bus as desired.


How do you draw a triangle using repeat command in logo?

To draw a triangle using the repeat command in Logo, you can use the following code: REPEAT 3 [FORWARD 100 RIGHT 120] This command instructs the turtle to move forward 100 units and then turn right by 120 degrees, repeating this process three times to complete the triangle. Adjust the forward distance as needed for different triangle sizes.


What is the full form of HT?

Hide Turtle in LOGO


How do you undo on MSW logo?

Sorry, LOGO doesnt have any undo command, so you will have to do everything over : (


What are the logo commands for dodecagon?

In Logo programming, you can create a dodecagon (a 12-sided polygon) using a simple command. The command would typically be: REPEAT 12 [FORWARD 50 RIGHT 30], where 50 is the length of each side. This command instructs the turtle to move forward by 50 units and then turn right by 30 degrees, repeating this action 12 times to complete the dodecagon. Adjust the FORWARD value to change the size of the dodecagon.