Turtle Graphics#

The original Python Turtle is based on Tkinter, a Python binding of the Tk GUI toolkit, which is not usable in the browser. Therefore we re-implemented the turtle library using pixiJS a library for 2d rendering. In WTP, python runs in a web worker thread while the pixi Canvas is rendered in the main thread. The communication happens over the PostMessage API. However to simplify the process, we use Comlink, a library, that lets us call functions within the respective other thread.

turtle.py#

Turtle Documentation

We do support most of the Python Turtle functionality with the exception of a few functions which are listed below. Additionally, we also added a few methods.

Additional Turtle Functions#

  • make_color

Create a new color with 4 values (r,g,b,a). We do also support an alpha channel, which is not supported natively by the python turtle (makeColor in gturtle)

  • get_pixel_color

returns the color below the turtle

  • get_pixel_color_str

Returns the value of the color below the turtle as a string. if it is a known color (e.g. yellow) it returns that. If not, it returns the hex string (e.g. #123456)

Unsupported Functions#

  • Turtle

    • undo

    • resizemode

    • shapesize

    • shearfactor

    • settiltangle

    • tiltangle

    • tilt

    • shapetransform

  • Screen

    • bgpic

    • resetscreen

    • screensize

    • setworldcoordinates

    • ontimer

    • colormode

    • getcanvas

    • getshapes

    • register_shape

    • exitonclick

    • setup

    • title

gturtle.py#

The gturtle Library known from TigerJython was originally based on the Java Turtle. The Java Turtle does not run in the Browser, and therefore we implemented it on top of the turtle library.