The program will create a cube in any dimensions and display it. repl.it will only allow up to 5 dimensions though. Press "p" to toggle perspective which could change the whole view. Press "space" to only show verticies. My second repl. Have fun!
@JonathanBrazier You use keyboard bindings. For Turtle, you can saywn.listen()onkey(function, "p")
or
wn.listen()onkeypress(function, "p")
if it's a later version of python.
any dimensional cube
The program will create a cube in any dimensions and display it. repl.it will only allow up to 5 dimensions though. Press "p" to toggle perspective which could change the whole view. Press "space" to only show verticies. My second repl. Have fun!
@JonathanBrazier You use keyboard bindings. For Turtle, you can say
wn.listen()
onkey(function, "p")
or
wn.listen()
onkeypress(function, "p")
if it's a later version of python.