STEP 13: Our roof doesn’t quite cover the whole house. That’s not good!

  • Change the triangle’s size to 300.
  • Look at the grey comment above the triangle code to see which parameter controls the size.

# sprite = codesters.Circle(x, y, diameter, "color") sun = codesters.Circle(-150, 175, 75, "gold") # sprite = codesters.Square(x, y, width, "color") house = codesters.Square(0, -125, 250, "purple") # sprite = codesters.Triangle(x, y, size, "color") roof = codesters.Triangle(0, 0, 100, "blue")