Skip to content

Commit

Permalink
examples/canvas/mesh_manipulation.py Fix PEP8 long lines
Browse files Browse the repository at this point in the history
  • Loading branch information
merriam committed Feb 1, 2015
1 parent 1ed9cb7 commit e0504af
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions examples/canvas/mesh_manipulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,10 @@ def update_points(self, *args):
while i < 2 * pi:
i += 0.01 * pi
points.extend([
Window.width / 2 + cos(i) * (self.radius + self.sin_wobble * sin(i * self.sin_wobble_speed)),
Window.height / 2 + sin(i) * (self.radius + self.sin_wobble * sin(i * self.sin_wobble_speed)),
Window.width / 2 + cos(i) * (self.radius + self.sin_wobble
* sin(i * self.sin_wobble_speed)),
Window.height / 2 + sin(i) * (self.radius + self.sin_wobble
* sin(i * self.sin_wobble_speed)),
self.offset_x + sin(i),
self.offset_y + cos(i)])

Expand Down

0 comments on commit e0504af

Please sign in to comment.