How do we measure how far the turtle pen moves?
Pixels
What line of code do you use to create a turtle object? (pen)
t = turtle.Turtle()
s is the screen object
How do we measure how much the turtle pen turns
Degrees
Name a turtle function that changes the color of the pen, fillcolor, or both
pencolor(), fillcolor(), or color()
Where does the turtle pen go? (Upper Left, Upper Right, Lower Left, Lower Right)
Upper Right
In the code above ^
What is that variable
What is the library
What is the function?
Variable - t
Library - turtle
Function - Turtle()
What are the two turtle functions we use to fill in a drawing?
begin_fill() and end_fill()
It needs to loop 4 times not 2 because a square has 4 sides
Where does the turtle pen go? (Upper Left, Upper Right, Lower Left, Lower Right)
Upper Left
Print the numbers 1 to infinity
What do we call the screen that our turtle pen draws on
The Canvas
What line of code do you use to create a screen object? (canvas)
How do I move the turtle pen without drawing on the canvas
Use t.up() and t.down()
What uses two number lines going left to right and down to up to help us plot points on a grid?
Coordinate System
bgcolor() or setup()
Why is it not drawing a triangle?
The angle is wrong
It's 360 / 3 or 360 / sides
Not
360 / 10