2018-03-31 15:20:30 -07:00
|
|
|
from __future__ import absolute_import
|
|
|
|
|
|
|
|
from camera.camera import Camera
|
|
|
|
|
2018-04-06 13:58:59 -07:00
|
|
|
|
2018-03-31 15:20:30 -07:00
|
|
|
class MovingCamera(Camera):
|
|
|
|
"""
|
|
|
|
Stays in line with the height, width and position
|
|
|
|
of a given mobject
|
|
|
|
"""
|
|
|
|
CONFIG = {
|
2018-04-06 13:58:59 -07:00
|
|
|
"aligned_dimension": "width" # or height
|
2018-03-31 15:20:30 -07:00
|
|
|
}
|
2018-04-06 13:58:59 -07:00
|
|
|
|
2018-03-31 15:20:30 -07:00
|
|
|
def __init__(self, frame, **kwargs):
|
|
|
|
"""
|
2018-04-06 13:58:59 -07:00
|
|
|
frame is a Mobject, (should be a rectangle) determining
|
2018-03-31 15:20:30 -07:00
|
|
|
which region of space the camera displys
|
|
|
|
"""
|
|
|
|
self.frame = frame
|
|
|
|
Camera.__init__(self, **kwargs)
|
|
|
|
|
|
|
|
def capture_mobjects(self, *args, **kwargs):
|
|
|
|
self.space_center = self.frame.get_center()
|
|
|
|
self.realign_frame_shape()
|
|
|
|
Camera.capture_mobjects(self, *args, **kwargs)
|
|
|
|
|
|
|
|
def realign_frame_shape(self):
|
|
|
|
height, width = self.frame_shape
|
|
|
|
if self.aligned_dimension == "height":
|
|
|
|
self.frame_shape = (self.frame.get_height(), width)
|
|
|
|
else:
|
|
|
|
self.frame_shape = (height, self.frame.get_width())
|
|
|
|
self.resize_frame_shape(0 if self.aligned_dimension == "height" else 1)
|