![]() |
Turtle Graphics Help - Filling each shape in - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: Homework (https://python-forum.io/forum-9.html) +--- Thread: Turtle Graphics Help - Filling each shape in (/thread-14362.html) Pages:
1
2
|
RE: Turtle Graphics Help - Filling each shape in - Nate - Nov-27-2018 (Nov-26-2018, 05:23 PM)ichabod801 Wrote: As I already said, and illustrated, you need to move the begin_fill and end_fill commands outside the loops. You are currently starting and ending the fill for each side. So each side is filled, but not the whole figure. You need to start the fill before you draw any sides (before the loop) and end the fill after you have drawn all of the side (after the loop). ty |