WEB TURTLE is a fun drawing program which uses what's called "Turtle Graphics" (the same thing some computer languages, most notably "Logo", use for graphics). The idea behind "Turtle Graphics" is that you have a turtle who's got a pen stuck to its tail. (The first turtle robot was created back in 1969!) You give it commands (like "go forward", "turn left", etc.) and it draws shapes on the screen (or paper).
Web Turtle can be used to help teach simple computer programming as well as the basics of geometry! It's completely web-based and doesn't use Java, plug-ins or software downloads, so it should work on almost any type of computer that has a graphical web browser!
If this is your first time, start by playing with an existing example drawing. Use the "Available Commands" / Help page to find out how Web Turtle works. Then try creating your own programs by starting a new drawing.
September 2017 - Some updates!
- Web Turtle turned 20 years old earlier this year!
- Corrected problems with the inputs fields on some links and forms on the Examples page.
- Added and cleaned up some of the "See Also" links, below.
For example, commands like this would draw a square:
In English:
- Draw with a Black pen
- Do this Four Times:
- Move Forward 10 Paces, Drawing
- Turn Right 90 Degrees
What you tell Web Turtle:
COLOR BLACK
REPEAT 4
DRAW 10
RIGHT 90
NEXT
See Also:
- "Turtle graphics" article on Wikipedia
- "Logo (programming language)" article on Wikipedia
- KTurtle - an educational programming environment for the KDE Desktop.
- PythonTurtle - a learning environment for Python programming suitable for beginners and children, inspired by Logo.
- Scratch - a free visual programming language developed by the MIT Media Lab.
- Lego Mindstorms - a series of kits containing software and hardware to create customizable, programmable robots.
"Web Turtle," created by Bill Kendrick, 1997-2017.