8 lines
219 B
Python
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)]
|