mirror of
https://github.com/ManimCommunity/manim.git
synced 2026-06-22 10:01:47 +00:00
9 lines
243 B
Python
9 lines
243 B
Python
from manim import *
|
|
|
|
|
|
class Test(Scene):
|
|
def construct(scene):
|
|
scene.camera.set_euler_angles(phi=75 * DEGREES, theta=-45 * DEGREES)
|
|
text = Tex("This is a 3D tex").fix_in_frame()
|
|
scene.add(text)
|
|
scene.wait()
|