Python Forum

Full Version: Turtle fillcolor?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello turtle experts and maintainers. I think the turtle is always black? Is there a way to change the turtle fill color? I have a proj using turtle to draw a dialface with white tic marks and numbers and a black face. I can use the turtle to point to the tic marks by turning on the outline param. It outlines in the pen color. Good so far, but I want a white filled arrow. Any way to do this? Thanks!
To have turtle in any specific color you can use:
turtle.fillcolor('white')
I swear I searched for this in books and forums, but it seems you are in fact correct, and my needle pointer is now white. Thanks for the reply! (I guess that one was obvious... I have a couple more that I might need to call in another question on... standby)