From 9fd904583ce1f4523562cb9fc3af0acce29aaeab Mon Sep 17 00:00:00 2001 From: nickedyer Date: Sun, 19 Feb 2023 16:39:24 -0500 Subject: [PATCH] added multiple lines --- thermopi/screen.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/thermopi/screen.py b/thermopi/screen.py index 7b22ec0..155dc2c 100644 --- a/thermopi/screen.py +++ b/thermopi/screen.py @@ -26,7 +26,10 @@ def main(windowed_mode): mouse_pos = pygame.mouse.get_pos() window.fill((0, 0, 0)) - pygame.draw.line(window, (255, 255, 255), (720/2, 720/2), mouse_pos, 15) + pygame.draw.line(window, (255, 255, 255), (0, 0), mouse_pos, 10) + pygame.draw.line(window, (255, 255, 255), (0, 720), mouse_pos, 10) + pygame.draw.line(window, (255, 255, 255), (720, 720), mouse_pos, 10) + pygame.draw.line(window, (255, 255, 255), (720, 0), mouse_pos, 10) pygame.display.flip()