mirror of
https://github.com/3b1b/manim.git
synced 2025-04-13 09:47:07 +00:00
24 lines
542 B
Python
24 lines
542 B
Python
from manimlib.scene.scene import Scene
|
|
|
|
|
|
class ThreeDScene(Scene):
|
|
CONFIG = {
|
|
"camera_config": {
|
|
"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
|