Turtle Graphics

From JSXGraph Wiki
Revision as of 16:11, 19 December 2008 by A WASSERMANN (talk | contribs)

This is a very basic implementation of turtle graphics with JSXGraph.

List of commands

There is a predefined turtle object [math]\displaystyle{ t }[/math]. Therefore, all commands start with [math]\displaystyle{ t }[/math], like [math]\displaystyle{ t.fd(100); }[/math]

  • t.forward(len); or t.fd(len);
  • t.back(len); or t.bk(len);
  • t.right(angle); or t.rt(angle);
  • t.left(angle); or t.lt(angle);
  • t.penUp();
  • t.penDown();
  • t.clean();
  • t.setPos(x,y);

Snowflake Example