Turtle Basics
Review the Following:
myTurtle = new Turtle(x, y);
myTurtle.penDown()
myTurtle.setColor(red, green, blue);
myTurtle.forward(distance);
myTurtle.right(degrees);
myTurtle.penUp();
[OLD FALL 2017] 15-104 • Introduction to Computing for Creative Practice
Professor Roger B. Dannenberg • Fall 2017 • Introduction to Computing for Creative Practice
myTurtle = new Turtle(x, y);
myTurtle.penDown()
myTurtle.setColor(red, green, blue);
myTurtle.forward(distance);
myTurtle.right(degrees);
myTurtle.penUp();