En este artículo veremos cómo podemos dibujar un arco en la ventana en el módulo PYGLET en python. Pyglet es una biblioteca fácil de usar pero poderosa para desarrollar aplicaciones GUI visualmente ricas como juegos, multimedia, etc. Una ventana es un objeto «pesado» que ocupa los recursos del sistema operativo. Las ventanas pueden aparecer como regiones flotantes o pueden configurarse para llenar una pantalla completa (pantalla completa). Un arco es una porción de la circunferencia de un círculo. En la figura de arriba, el arco es la parte azul del círculo. Estrictamente hablando, un arco podría ser una parte de alguna otra forma curva, como una elipse, pero casi siempre se refiere a un círculo. El arco se dibuja con la ayuda del módulo de formas en pyglet.
Podemos crear una ventana con la ayuda del comando que se indica a continuación.
# creating a window window = pyglet.window.Window(width, height, title)
Para crear una ventana, usamos el método Arc con pyglet.shapes
Sintaxis: formas.Arc (arc_x, arc_y, size_arc, segmentos, ángulo, color, lote = lote)
Argumento: toma los dos primeros enteros, es decir, la posición del arco, el tercer entero como tamaño , el cuarto es un número entero, es decir, segmentos, el quinto es flotante, es decir, un ángulo, el sexto es color y el último es un objeto por lotes
Retorno: Devuelve un objeto Arco
A continuación se muestra la implementación.
Python3
# importing pyglet module import pyglet # importing shapes from the pyglet from pyglet import shapes # width of window width = 500 # height of window height = 500 # caption i.e title of the window title = "Geeksforgeeks" # creating a window window = pyglet.window.Window(width, height, title) # creating a batch object batch = pyglet.graphics.Batch() # properties of circle # co-ordinates of circle arc_x = 250 arc_y = 250 # size of arch size_arc = 100 # segments segments = 5 # angle angle = 20 # color = green color = (50, 225, 30) # creating a arc arc1 = shapes.Arc(arc_x, arc_y, size_arc, segments, angle, color, batch = batch) # changing opacity of the arc1 # opacity is visibility (0 = invisible, 255 means visible) arc1.opacity = 250 # creating another circle with other properties # new position = circle1_position - 50 # new size = previous radius -20 # new color = red color = (255, 30, 30) # increase segments segments = 10 # decreasing angle angle = 7 # creating another arc arc2 = shapes.Arc(arc_x-50, arc_y-50, size_arc-20, segments, angle, color, batch = batch) # changing opacity of the arce2 arc2.opacity = 255 # window draw event @window.event def on_draw(): # clear the window window.clear() # draw the batch batch.draw() # run the pyglet application pyglet.app.run()
Producción :
Publicación traducida automáticamente
Artículo escrito por rakshitarora y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA