Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
x_offset
#2
Ask yourself, how many lines will those loops draw?
The current answer is 100.
You are drawing the lines you want but are also drawing 90 other lines that overlap the ones you want.

You want something like this probably?
x_offset = 100
for y_offset in range(0, 100, 10):
    start, end = [0, 160+y_offset], [x_offset-y_offset, 160+y_offset]
    pg.draw.line(self.screen, pg.Color("red"), start, end, 1)
Reply


Messages In This Thread
x_offset - by Graham - Nov-21-2018, 03:00 PM
RE: x_offset - by Mekire - Nov-22-2018, 06:29 AM
RE: x_offset - by Graham - Nov-22-2018, 08:49 AM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020