El módulo de Turtle proporciona primitivos de gráficos de Turtle, tanto en formas orientadas a objetos como orientadas a procedimientos. Debido a que usa Tkinter para los gráficos subyacentes, necesita una versión de Python instalada con soporte Tk.
Turtle.begin_fill()
Este método se usa para llamar justo antes de dibujar una forma para rellenar. No se necesita ningún argumento.
Sintaxis:
turtle.begin_fill()
A continuación se muestra la implementación del método anterior con un ejemplo:
Ejemplo:
Python3
# importing package import turtle # set turtle position # and color turtle.up() turtle.goto(0,-30) turtle.down() turtle.color("yellow") # start fill block turtle.begin_fill() # all instruction within this # block are filled with turtle # color as set above turtle.circle(60) # end fill block turtle.end_fill() # hide the turtle turtle.hideturtle()
Producción :
Publicación traducida automáticamente
Artículo escrito por deepanshu_rustagi y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA