about summary refs log tree commit diff homepage
path: root/brutalmaze/misc.py
diff options
context:
space:
mode:
Diffstat (limited to 'brutalmaze/misc.py')
-rw-r--r--brutalmaze/misc.py10
1 files changed, 2 insertions, 8 deletions
diff --git a/brutalmaze/misc.py b/brutalmaze/misc.py
index fe09035..94a2c39 100644
--- a/brutalmaze/misc.py
+++ b/brutalmaze/misc.py
@@ -1,6 +1,5 @@
-# -*- coding: utf-8 -*-
 # misc.py - module for miscellaneous functions
-# Copyright (C) 2017, 2018  Nguyễn Gia Phong
+# Copyright (C) 2017-2020  Nguyễn Gia Phong
 #
 # This file is part of Brutal Maze.
 #
@@ -31,11 +30,6 @@ from pygame.gfxdraw import filled_polygon, aapolygon
 from .constants import ADJACENTS, CORNERS
 
 
-def round2(number):
-    """Round a number to an int."""
-    return int(round(number))
-
-
 def randsign():
     """Return either -1 or 1 (kind of) randomly."""
     return (pygame.time.get_ticks() & 1)*2 - 1
@@ -66,7 +60,7 @@ def deg(x):
     """Convert angle x from radians to degrees,
     casted to a nonnegative integer.
     """
-    return round2((lambda a: a if a > 0 else a + 360)(degrees(x)))
+    return round((lambda a: a if a > 0 else a + 360)(degrees(x)))
 
 
 def join(iterable, sep=' ', end='\n'):