drawTurtle
index
 
Name drawTurtle ()
Description Draw the turtle (a small blue triangle) to the screen. Makes Turtle's location and heading visible.
Syntax drawTurtle();
Parameters
None  
Returns None
Example

    import Turtle.*;
    size(500,500);
    background(255);
    stroke(0);

    Turtle t = new Turtle(this);


    t.forward(100);
    t.right(45);
    t.drawTurtle();