fd 50 rt120 fd50 rt120 fd50 rt 120
Chat with our AI personalities
reapet 2[fd100 rt 90]
The Star Trek logo, if made into straight lines, would be a concave quadrilateral. Simply draw a triangle. Now, at any point along the sides, make a new point and move it inward and it will be a concave quadrilateral.
AOL - previously known as America Online
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.
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.