mirror of
https://github.com/3b1b/manim.git
synced 2025-04-13 09:47:07 +00:00
20 lines
494 B
Python
20 lines
494 B
Python
from manimlib.scene.scene import Scene
|
|
|
|
|
|
class ThreeDScene(Scene):
|
|
camera_config = dict(samples=4)
|
|
|
|
def begin_ambient_camera_rotation(self, rate=0.02):
|
|
pass # TODO
|
|
|
|
def stop_ambient_camera_rotation(self):
|
|
pass # TODO
|
|
|
|
def move_camera(self,
|
|
phi=None,
|
|
theta=None,
|
|
distance=None,
|
|
gamma=None,
|
|
frame_center=None,
|
|
**kwargs):
|
|
pass # TODO
|