From e185b8719570881dde2b80a645eff1cb0b0a765c Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Tue, 4 Feb 2020 15:27:50 -0800 Subject: [PATCH] Moving some functions away from MovingCamera. Soon, all that should be default behavior of Camera --- manimlib/camera/moving_camera.py | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/manimlib/camera/moving_camera.py b/manimlib/camera/moving_camera.py index c54a1e6b..64723891 100644 --- a/manimlib/camera/moving_camera.py +++ b/manimlib/camera/moving_camera.py @@ -8,18 +8,7 @@ from manimlib.mobject.types.vectorized_mobject import VGroup from manimlib.utils.config_ops import digest_config -# TODO, think about how to incorporate perspective -class CameraFrame(VGroup): - CONFIG = { - "width": FRAME_WIDTH, - "height": FRAME_HEIGHT, - "center": ORIGIN, - } - - def __init__(self, **kwargs): - pass - - +# Depricated? class MovingCamera(Camera): """ Stays in line with the height, width and position of it's 'frame', which is a Rectangle