Added PI constant

This commit is contained in:
Grant Sanderson
2018-07-16 19:42:06 -07:00
parent 1b244c6367
commit c9b71afb85

View File

@ -106,7 +106,8 @@ BOTTOM = FRAME_Y_RADIUS * DOWN
LEFT_SIDE = FRAME_X_RADIUS * LEFT
RIGHT_SIDE = FRAME_X_RADIUS * RIGHT
TAU = 2 * np.pi
PI = np.pi
TAU = 2 * PI
DEGREES = TAU / 360
ANIMATIONS_DIR = os.path.join(MEDIA_DIR, "animations")