En este artículo veremos cómo podemos dibujar un rectángulo 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 rectángulo es una forma de cuatro lados donde cada ángulo es un ángulo recto (90°). También los lados opuestos son paralelos y de igual longitud. El rectángulo 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 Rectangle con pyglet.shapes
Sintaxis: formas. Rectángulo (x, y, ancho, alto, color = (255, 255, 255), lote = Ninguno)
Argumento: toma posición, es decir, un par de enteros , el ancho y la altura del rectángulo, el color del rectángulo y el último es el objeto por lotes
Retorno: Devuelve el objeto Línea
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 rectangle # co-ordinates of rectangle co_x = 150 co_y = 150 # width of rectangle width = 300 # height of rectangle height = 200 # color = green color = (50, 225, 30) # creating a rectangle rec1 = shapes.Rectangle(co_x, co_y, width, height, color = color, batch = batch) # changing opacity of the rect1 # opacity is visibility (0 = invisible, 255 means visible) rec1.opacity = 250 # creating another rectangle with properties # x, y co ordinate : 50, 250 # width, height of rectangle : 300, 200 # color = red color = (255, 25, 25) # creating rectangle rec2 = shapes.Rectangle(50, 250, 300, 200, color = color, batch = batch) # changing opacity of the rec2 # opacity is visibility (0 = invisible, 255 means visible) rec2.opacity = 100 # window draw event to draw rectangles @window.event def on_draw(): # clear the window window.clear() # draw the batch batch.draw() # run the pyglet application pyglet.app.run()
Publicación traducida automáticamente
Artículo escrito por rakshitarora y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA