Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/helpers.py
diff options
context:
space:
mode:
Diffstat (limited to 'helpers.py')
-rw-r--r--helpers.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/helpers.py b/helpers.py
index 889534b..47dfbe4 100644
--- a/helpers.py
+++ b/helpers.py
@@ -137,4 +137,9 @@ def decomposePoly(vertices):
nv -= 1
# reset error detection
count = 2 * nv
- return result \ No newline at end of file
+ return result
+
+def cast_tuple_to_int(tuple):
+ """Cast tuple values to ints to avoid gtk+ and pygame's dislike of floats.
+ """
+ return [int(i) for i in tuple]