powered by
These functions enable or disable displaying the Turtle's image on the screen.
turtle_show()turtle_hide()
turtle_hide()
The Turtle must be initialized prior to using this function, see turtle_init.
turtle_init
It is recommended to hide the Turtle when performing multiple Turtle moves, for efficiency reasons, see also turtle_do.
turtle_do
Other TurtleGraphics: TurtleGraphics-package, turtle_do, turtle_getpos, turtle_goto, turtle_init, turtle_move, turtle_param, turtle_reset, turtle_status, turtle_turn, turtle_up
TurtleGraphics-package
turtle_getpos
turtle_goto
turtle_move
turtle_param
turtle_reset
turtle_status
turtle_turn
turtle_up
# NOT RUN { turtle_init() turtle_forward(4) turtle_hide() turtle_left(30) turtle_forward(3) # }
Run the code above in your browser using DataLab