Awesome quilt program that I created using Logo interpreter \ Devlog # 1
A downloadable project
For my awesome quilt program, I used the Logo interpreter to create an interesting quilt that consisted of squares within squares that forms an infinite square type of pattern. Before drawing these infinite squares, I had to get used to the logo interpreter where I started looking at a wide variety of syntaxes that the software contained. As I got used to the software I began to conduct an idea of creating a pattern of squares that contained smaller squares within them. When I first started the process, I first had to position the turtle towards the upper left corner of the screen. After I brought the turtle to the upper left part of the screen, I began to draw some squares. The first square that I drew was a bit challenging because the smaller squares that were inside the larger squares were uneven and so I ended up creating a pattern of code that helped me figure out how to evenly place each smaller square within the larger square. After I figured out how to draw one square that contained smaller squares that were even and organized , I continued to use the same pattern to generate more squares to fill up the whole screen.
Here is a snippet of the code that I came up with while developing the squares:
When I started discovering the pattern to create each square, I noticed that for each square I only had to change the position of the y axis once while the position of the x axis would change about 7 times or so. I had so much fun creating this on Logo interpreter and it also helped me understand how to implement the software and to get used to some of the syntax functionalities.
infinite square code snippet that I created:
Penup
Setpos[-500 100]
Pendown
Repeat 4 [fd 100 rt 90]
Repeat 4 [fd 80 rt 90]
Repeat 4 [fd 70 rt 90]
Repeat 4 [fd 50 rt 90]
Repeat 4 [fd 40 rt 90]
Repeat 4 [fd 20 rt 90]
penup
Setpos[-350 100]
pendown
Repeat 4 [fd 100 rt 90]
Repeat 4 [fd 80 rt 90]
Repeat 4 [fd 70 rt 90]
Repeat 4 [fd 50 rt 90]
Repeat 4 [fd 40 rt 90]
Repeat 4 [fd 20 rt 90]
Penup
Setpos[-200 100]
pendown
Repeat 4 [fd 100 rt 90]
Repeat 4 [fd 80 rt 90]
Repeat 4 [fd 70 rt 90]
Repeat 4 [fd 50 rt 90]
Repeat 4 [fd 40 rt 90]
Repeat 4 [fd 20 rt 90]
penup
Setpos[-50 100]
pendown
Repeat 4 [fd 100 rt 90]
Repeat 4 [fd 80 rt 90]
Repeat 4 [fd 70 rt 90]
Repeat 4 [fd 50 rt 90]
Repeat 4 [fd 40 rt 90]
Repeat 4 [fd 20 rt 90]
Penup
penup
Setpos[100 100]
Pendown
Repeat 4 [fd 100 rt 90]
Repeat 4 [fd 80 rt 90]
Repeat 4 [fd 70 rt 90]
Repeat 4 [fd 50 rt 90]
Repeat 4 [fd 40 rt 90]
Repeat 4 [fd 20 rt 90]
penup
Setpos[250 100]
Pendown
Repeat 4 [fd 100 rt 90]
Repeat 4 [fd 80 rt 90]
Repeat 4 [fd 70 rt 90]
Repeat 4 [fd 50 rt 90]
Repeat 4 [fd 40 rt 90]
Repeat 4 [fd 20 rt 90]
penup
Setpos[390 100]
pendown
Repeat 4 [fd 100 rt 90]
Repeat 4 [fd 80 rt 90]
Repeat 4 [fd 70 rt 90]
Repeat 4 [fd 50 rt 90]
Repeat 4 [fd 40 rt 90]
Repeat 4 [fd 20 rt 90]
End
Published | 11 days ago |
Status | Canceled |
Category | Other |
Author | meccagodzilla231 |
Tags | awesome-quilt-program |
Leave a comment
Log in with itch.io to leave a comment.