mirror of
https://github.com/3b1b/manim.git
synced 2025-08-20 05:14:12 +00:00
Make sure add_fixed_in_frame_mobjects adds mobjects to scene
This commit is contained in:
parent
b18537b1bb
commit
728c025f6f
1 changed files with 2 additions and 0 deletions
|
@ -74,9 +74,11 @@ class ThreeDScene(Scene):
|
||||||
return moving_mobjects
|
return moving_mobjects
|
||||||
|
|
||||||
def add_fixed_orientation_mobjects(self, *mobjects, **kwargs):
|
def add_fixed_orientation_mobjects(self, *mobjects, **kwargs):
|
||||||
|
self.add(*mobjects)
|
||||||
self.camera.add_fixed_orientation_mobjects(*mobjects, **kwargs)
|
self.camera.add_fixed_orientation_mobjects(*mobjects, **kwargs)
|
||||||
|
|
||||||
def add_fixed_in_frame_mobjects(self, *mobjects):
|
def add_fixed_in_frame_mobjects(self, *mobjects):
|
||||||
|
self.add(*mobjects)
|
||||||
self.camera.add_fixed_in_frame_mobjects(*mobjects)
|
self.camera.add_fixed_in_frame_mobjects(*mobjects)
|
||||||
|
|
||||||
def remove_fixed_orientation_mobjects(self, *mobjects):
|
def remove_fixed_orientation_mobjects(self, *mobjects):
|
||||||
|
|
Loading…
Add table
Reference in a new issue