Forest Wiki: Learn Web Development in the Browser
Turtle Graphics
Fill Shape

Fill Shape




The Problem Statement

For this assignment we want to draw solid shapes.  Like this one. 

The following commands may be useful to you. 

t.pencolor("green")
 t.fillcolor("red")
 t.bgcolor("blue")

 t.begin_fill()
   #Draw the Shape
t.end_fill()

 

 

Starting Source Code