Skip to content

Commit

Permalink
Create Shape-maker.py
Browse files Browse the repository at this point in the history
  • Loading branch information
neverfriendme authored Aug 16, 2024
1 parent 5af3b43 commit 0901f7b
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions Shape-maker/Shape-maker.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
rom turtle import *
__name__ == "__main__"

print("Shape maker v4 pre-release")
print("Exit\nForm\nlistfunc\nhelp")
WF = input("")
if WF == "Form.circ":
import funcs
funcs.Form_cric()
elif WF == "Form.octa":
import funcs
funcs.Form_octa()
elif WF == "Form.nona":
import funcs
funcs.Form_nona()
elif WF == "Exit":
print("exiting")
exit()
elif WF == "listfunc.[Form]":
import funcs
funcs.listfunc_form()
elif WF == "Form.hexa":
import funcs
funcs.Form_hexa()
elif WF == "Form.dode":
import funcs
funcs.Form_dode()
elif WF == "help" or "?h":
import funcs
funcs.help()

0 comments on commit 0901f7b

Please sign in to comment.