answersLogoWhite

0

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

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


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

repcount


What are the formulas of MSW logo?

well there are many commands such as pd (pen down) pu (pen up) etc


How do you draw a cycle in MSW Logo?

To draw a cycle in MSW Logo, you can use the REPEAT command along with the FORWARD and RIGHT commands. For example, you can type REPEAT 36 [FORWARD 10 RIGHT 10] to create a circular shape. This command effectively moves the turtle forward while turning it slightly, creating a smooth cycle. Adjust the numbers to change the size and smoothness of the cycle.


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.


How many commands does the teksta puppy have?

10


How many commands are there in the New Testament?

10


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.


What are the commands used in PC logo to make a square?

Type in pc logo software fd 40 rt 90 fd 40 rt 90 fd 40 rt 90 fd 40 done


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

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


What was the guide that God gave his people?

the 10 commands


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.