Skip to content

Commit

Permalink
remove empty lines
Browse files Browse the repository at this point in the history
  • Loading branch information
bearney74 authored Mar 3, 2017
1 parent 3c1ae1a commit 813d698
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions moviepy/video/tools/interpolators.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ def __init__(self, tt=None, ss=None, ttss = None, left=None, right=None):
self.tmin, self.tmax = min(tt), max(tt)

def __call__(self, t):

return np.interp(t, self.tt, self.ss, self.left, self.right)

class Trajectory:
Expand All @@ -36,11 +35,9 @@ def __call__(self, t):
return np.array([self.xi(t), self.yi(t)])

def addx(self, x):

return Trajectory(self.tt, self.xx+x, self.yy)

def addy(self, y):

return Trajectory(self.tt, self.xx, self.yy+y)

def update_interpolators(self):
Expand Down

0 comments on commit 813d698

Please sign in to comment.