-
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
5af3b43
commit 0901f7b
Showing
1 changed file
with
30 additions
and
0 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
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() |