-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1d1c42a
commit e5316bd
Showing
3 changed files
with
75 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,46 @@ | ||
from 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() | ||
Version = "Version 5" | ||
print(Version) | ||
print("Exit\nForm\nlistfunc\nspecial\nhelp") | ||
if 1 == 1: | ||
while True: | ||
WF = input("") | ||
if WF == "-v": | ||
print(Version) | ||
elif 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 == "listfunc.[special]": | ||
import funcs | ||
funcs.listfunc_spec() | ||
elif WF == "Form.hexa": | ||
import funcs | ||
funcs.Form_hexa() | ||
elif WF == "Form.dode": | ||
import funcs | ||
funcs.Form_dode() | ||
elif WF == "Form.tria": | ||
import funcs | ||
funcs.Form_tria() | ||
elif WF == "Form.squa": | ||
import funcs | ||
funcs.Form_squa() | ||
elif WF == "special.special1": | ||
import funcs | ||
funcs.Form_spec1() | ||
elif WF == "help" or "?h": | ||
import funcs | ||
funcs.help() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters