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

8 lines
219 B
Python
Raw Normal View History

###########################################
# Created on 1-9-2013. Miguel Angel Astor #
###########################################
2013-01-10 13:52:22 -04:30
import math
def angle_to_vector(angle):
return [math.cos(angle), math.sin(angle)]