Assignment 13 - Vinniethatguy/UMKCCS101Labs GitHub Wiki

Turtle We’re going to use the turtle module to draw on the screen a little.
Take a few minutes to get familiar with turtle. Experiment with turning left and right, and drawing lines. Keep in mind that when we are drawing a box, or a circle, the direction of the turtle may not be at the angle we intend. Some of the skills we’re going to need is are ●turtle.right( angle ) ●turtle.forward( distance ) ●turtle.circle( radius ) In some of the classes we want to create a class that draws a filled shape. In which case we need to use turtle.fillcolor(color), turtle.begin_fill(),and turtle.end_fill()