Refactor generate_logo

This commit is contained in:
Grant Sanderson
2015-10-29 17:00:46 -07:00
parent e4b61dc5df
commit f581446c4e
9 changed files with 42 additions and 23 deletions

View File

@ -118,7 +118,7 @@ def random_color():
################################################
def straight_path(start_points, end_points, alpha):
return (1-alpha)*start_points + alpha*end_points
return interpolate(start_points, end_points, alpha)
def path_along_arc(arc_angle):
"""