Not sure why these still existed...

This commit is contained in:
Grant Sanderson
2016-03-22 00:00:37 -07:00
parent 803301e4a1
commit efcaae4d2a

View File

@ -45,18 +45,6 @@ class Animation(object):
self.filter_functions += filter_functions
return self
def restrict_height(self, height):
self.restricted_height = min(height, SPACE_HEIGHT)
return self
def restrict_width(self, width):
self.restricted_width = min(width, SPACE_WIDTH)
return self
def shift(self, vector):
self.spatial_center += vector
return self
def set_run_time(self, time):
self.run_time = time
return self