Make sure add_fixed_in_frame_mobjects adds mobjects to scene

This commit is contained in:
Grant Sanderson
2018-09-10 11:37:32 -07:00
parent b18537b1bb
commit 728c025f6f

View File

@ -74,9 +74,11 @@ class ThreeDScene(Scene):
return moving_mobjects
def add_fixed_orientation_mobjects(self, *mobjects, **kwargs):
self.add(*mobjects)
self.camera.add_fixed_orientation_mobjects(*mobjects, **kwargs)
def add_fixed_in_frame_mobjects(self, *mobjects):
self.add(*mobjects)
self.camera.add_fixed_in_frame_mobjects(*mobjects)
def remove_fixed_orientation_mobjects(self, *mobjects):