VOOZH about

URL: https://www.geeksforgeeks.org/python/pyglet-drawing-rectangle/

⇱ PYGLET – Drawing Rectangle - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

PYGLET – Drawing Rectangle

Last Updated : 9 Jul, 2021

In this article we will see how we can draw rectangle on window in PYGLET module in python. Pyglet is easy to use but powerful library for developing visually rich GUI applications like games, multimedia etc. A window is a "heavyweight" object occupying operating system resources. Windows may appear as floating regions or can be set to fill an entire screen (fullscreen). A rectangle is a four-sided shape where every angle is a right angle (90°). Also opposite sides are parallel and of equal length. Rectangle is drawn with the help of shapes module in pyglet.
We can create a window with the help of command given below 
 

# creating a window
window = pyglet.window.Window(width, height, title)


 

In order to create window we use Rectangle method with pyglet.shapes
Syntax : shapes.Rectangle(x, y, width, height, color=(255, 255, 255), batch=None)
Argument : It takes position i.e pair of integer, width and height of rectangle, color of rectangle and last is batch object
Return : It returns Line object 
 


Below is the implementation 
 

👁 Image
Comment
Article Tags: