answersLogoWhite

0

use fd rt lt bk hide turtel show turtel penup pendown giving comands to the part

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

Write logo commands to draw the rectangle figure?

write the logo commands to draw the triangle


How do you draw a triangle using logo commands using three lines?

fd 60 rt 120 fd 60 rt 120 fd 60 rt 120 will cause the turtle to draw a triangle. The square brackets indicate that the enclosed commands are to be executed three times, repeat 3 [fd 60 rt 120] Search Google with: "logo commands triangle" and have a look through the websites on the subject.


What are the commands to draw a castle in MSW logo?

To draw a castle in MSW Logo, you can use a combination of basic shapes and commands. For example, you might use the following commands: REPEAT 4 [FORWARD 100 RIGHT 90] ; Draw the base square FORWARD 100 ; Move to the top of the square REPEAT 4 [FORWARD 50 RIGHT 90] ; Draw the top square (tower) You can further customize the castle by adding more towers and details with additional commands. Adjust the dimensions and repetitions to create your desired castle design.


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.


What are the logo commands to draw a 6 pointed star?

For 5 pointed star use repeat 5 [fd 100 rt 144]


What commands to draw heptagon in logo?

To draw a heptagon in Logo, you can use the following commands: REPEAT 7 [FORWARD 100 RIGHT 51.43] This command moves the turtle forward by 100 units and turns it right by approximately 51.43 degrees, repeating this process seven times to form a heptagon. Adjust the FORWARD value to change the size of the heptagon.


How do you draw nonagon using logo command?

repeat 3 [fd 250 rt 120]


Write logo commands to draw the square figure?

fd 50 rt 90 fd 50 rt 90 fd 50 rt 90 fd 50


What is the logo command for rhombus?

In Logo programming, the command to draw a rhombus can be achieved using the combination of FORWARD and RIGHT (or LEFT) commands to create the desired angles. A typical command sequence might look like this: REPEAT 2 [FORWARD 100 RIGHT 60 FORWARD 100 RIGHT 120], where you adjust the angles and lengths as needed to create a rhombus shape.


How do you draw triangle using blackcat logo?

fd 50 rt120 fd50 rt120 fd50 rt 120


Who draw the logo of Mercury Drugstore?

you did


What are the commands for making complicated 3D drawings in MSW LOGO?

repcount