mirror of
https://github.com/3b1b/manim.git
synced 2025-08-03 04:04:36 +08:00
Make sure add_fixed_in_frame_mobjects adds mobjects to scene
This commit is contained in:
@ -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):
|
||||
|
Reference in New Issue
Block a user