Useful tips

What is the command of triangle in logo?

What is the command of triangle in logo?

Use triangle to draw a triangle on your screen. Then use penup to make the turtle stop drawing. Use commands like forward and right to move the turtle to another location on the screen, use pendown to start drawing again, then draw another triangle or a decoration.

What are the commands of MSW logo?

Features

Command Abbreviations Output
HIDETURTLE HT Hides the turtle and aids viewing a clear drawing on the screen
SHOWTURTLE ST Shows the turtle after it is hidden from the screen
PENUP PU Sets the turtle to move without drawing
PENDOWN PD Resets to a drawing pen when ordered to move

What are the commands for the MSW logo?

MSW LOGO COMMANDS Command Description Example FD Moves turtle forward FD 100 BK Moves turtle backward BK 100 Right or RT Turns the head of the turtle to the right RT 90 Left or LT Turns the head of the turtle to the left LT 90 Home Brings the turtle to its starting position Home CS or CLEARSCREEN Erases drawing on the main screen CS

How to do repeated patterns with MSW logo?

When making repetitions of the shape, ensure that the number of repetitions and the angle through which the shape is turned multiple to make 360 degrees i.e. repeat 10 [ square rt 36] Repeat 10 [square rt 36] Repeat 12 [square rt 30] Repeat 30 [square rt 12] Repeat 36 [square rt 10] Repeat 10 [hexagon rt 36] Repeat 12 [hexagon rt 30]

How do you draw turtle in MSW logo?

The turtle moves to the x-coordinate 100 and the y-coordinate 100. Once there it can do another procedure like square. The turtle in MSW Logo is a like a pen. Then press enter. The turtle is now up. This will move the turtle forward 50 but won’t draw anything because the pen is up. The pen is now down and will now draw.

How do you delete window with MSW logo?

Go back to the procedure box then press enter after the buttoncreate line. Please put square brackets around windowdelete “mywindow. The windowdelete deletes a window but first you type “mywindow to tell it which one to delete.