From efcaae4d2a51cb090c7ba9be39a0e86a6d297422 Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Tue, 22 Mar 2016 00:00:37 -0700 Subject: [PATCH] Not sure why these still existed... --- animation/animation.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/animation/animation.py b/animation/animation.py index 068f1497..33e6fe96 100644 --- a/animation/animation.py +++ b/animation/animation.py @@ -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