From dce162ba4a1c0efd71c330b5b23a51ac81797309 Mon Sep 17 00:00:00 2001 From: Brosef Date: Thu, 26 Jun 2025 14:53:46 +0100 Subject: [PATCH] Made the first item appear on the right --- game.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/game.py b/game.py index 7661d6f..a384ecd 100644 --- a/game.py +++ b/game.py @@ -106,8 +106,6 @@ class Game(gameUtils.Game): for idx, item in enumerate(self.items): # Calculate the radians of this item rad = (idx / len(self.items)) * maths.pi * 2 - # Rotate it CCW be 90deg so the first item is on the top - rad -= maths.pi / 2 # Calculate the vector offset by half the item gap # This is because the text should be in the middle, # and the lines (which is what this is used by) on the edges