From b945614d0301b57e3b468eb3227f897feb8e804b Mon Sep 17 00:00:00 2001 From: Justin Toombs Date: Thu, 13 Jul 2023 04:05:54 -0700 Subject: [PATCH] Recreate my streaming and content creation logo. Needed to figure out how to not have both letters connected. Overall, it was frustrating at first since I struggle with math and needed to calculate each movement, but I felt a great deal of satisfaction whenever I figured out the correct amount for each line. It was also a somewhat theraputic experience to go through the process as it had my full attention throughout, which can oftentimes be a problem for me if something is not engaging enough. The problem solving nature of the turtle and its directions was a good brain puzzle if not anything else. --- drawing.py | 31 +++++++++++++++++++++++++++++-- 1 file changed, 29 insertions(+), 2 deletions(-) diff --git a/drawing.py b/drawing.py index fe873c3..12d91ad 100644 --- a/drawing.py +++ b/drawing.py @@ -18,11 +18,38 @@ forward(75) left(90) forward(50) left(90) -forward(15) +forward(20) left(90) forward(30) right(90) forward(35) right(90) -forward(90) +forward(50) +right(90) +forward(110) +right(90) +forward(70) +left(90) +forward(20) + +penup() +right(90) +forward(15) +pendown() + +forward(150) +right(90) +forward(20) +right(90) +forward(65) +left(90) +forward(130) +right(90) +forward(20) +right(90) +forward(130) +left(90) +forward(65) +right(90) +forward(20) input()