Files
Super-HUGS-Revolution-98/math_utils.py

8 lines
219 B
Python

###########################################
# Created on 1-9-2013. Miguel Angel Astor #
###########################################
import math
def angle_to_vector(angle):
return [math.cos(angle), math.sin(angle)]