Solutions Latest Update 100% Solved
What two things must be included in your function definition? ✔✔A function name and
commands to be performed
What is the proper way to call the function three_circles? ✔✔three_circles()
How would I change Tracy's trail to a yellow line with a thickness of 10 pixels?
✔✔color("yellow) pensize(10)
What is true of Tracy's color command? ✔✔The color name must be in quotation marks
What is the correct way to draw a circle that is filled in? ✔✔begin_fill circle(20) end_fill
what would be the output of the following command? ✔✔circle(50,360,5)
What would be the output of the following command? ✔✔circle(50,180,3)