formatting

This commit is contained in:
Frank DeMarco 2015-06-25 16:56:34 -04:00
parent ead93a6ad0
commit 41b94cf35b
1 changed files with 2 additions and 1 deletions

View File

@ -30,7 +30,8 @@ def get_points_on_circle(center, radius, count, offset=0):
points = []
current_angle = 0
for _ in xrange(count):
points.append(get_point_on_circle(center, radius, current_angle + offset))
points.append(get_point_on_circle(center, radius,
current_angle + offset))
current_angle += angle_step
return points