Drawing lines with the pygame.gfxdraw module
Apart from the draw module, pygame has another drawing module which is the gfxdraw module and this time we will use this module to draw lines on the screen. Here is a program that will draw three lines using the three different line-drawing functions of gfxdraw! We use pygame.gfxdraw.line, pygame.gfxdraw.hline and pygame.gfxdraw.vline to paint three…