diff --git a/README.md b/README.md index aee1fea..e80f159 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,7 @@ which allows basic formatting. ## Description -(Describe your goal for this project. If you want to link to an -image, move the image to this directory, and then use the following syntax: +(My goal for this project is to make 5 triforce triangles) ![Description](filename.png) @@ -18,4 +17,4 @@ image, move the image to this directory, and then use the following syntax: ## Planning -(Include your planning here, including your project milestone.) +(my plan to accomplish this is to make a loop to make the triforce triangles and then use that loop 5 times.) diff --git a/drawing.py b/drawing.py index 29fc89e..92d1d19 100644 --- a/drawing.py +++ b/drawing.py @@ -1,7 +1,15 @@ # drawing.py # ---------- -# By ____(you)___________ +# By ____(Grandville)___________ # -# (Briefly describe what this program does.) +# (draws triangles.) from turtle import * +from math import sqrt +def triangle(size): + forward(size) + right(60) +triangle(100) +input() + +