@@ -57,7 +57,7 @@ Basic Concepts
57
57
.. manim :: BraceAnnotation
58
58
:save_last_frame:
59
59
:ref_classes: Brace
60
- :ref_functions : Brace.get_text Brace.get_tex
60
+ :ref_methods : Brace.get_text Brace.get_tex
61
61
62
62
class BraceAnnotation(Scene):
63
63
def construct(self):
@@ -100,7 +100,7 @@ Basic Concepts
100
100
.. manim :: BezierSpline
101
101
:save_last_frame:
102
102
:ref_classes: Line VGroup
103
- :ref_functions : VMobject.add_cubic_bezier_curve
103
+ :ref_methods : VMobject.add_cubic_bezier_curve
104
104
105
105
class BezierSpline(Scene):
106
106
def construct(self):
@@ -203,7 +203,7 @@ Animations
203
203
self.wait()
204
204
205
205
.. manim :: MovingAround
206
- :ref_functions : Mobject.shift VMobject.set_fill Mobject.scale Mobject.rotate
206
+ :ref_methods : Mobject.shift VMobject.set_fill Mobject.scale Mobject.rotate
207
207
208
208
class MovingAround(Scene):
209
209
def construct(self):
@@ -344,7 +344,7 @@ Plotting with Manim
344
344
:save_last_frame:
345
345
:ref_modules: manim.scene.graph_scene
346
346
:ref_classes: MathTex
347
- :ref_functions : GraphScene.setup_axes GraphScene.get_graph GraphScene.get_vertical_line_to_graph GraphScene.input_to_graph_point
347
+ :ref_methods : GraphScene.setup_axes GraphScene.get_graph GraphScene.get_vertical_line_to_graph GraphScene.input_to_graph_point
348
348
349
349
class SinAndCosFunctionPlot(GraphScene):
350
350
def __init__(self, **kwargs):
@@ -378,7 +378,7 @@ Plotting with Manim
378
378
.. manim :: GraphAreaPlot
379
379
:save_last_frame:
380
380
:ref_modules: manim.scenes.graph_scene
381
- :ref_functions : GraphScene.setup_axes GraphScene.get_graph GraphScene.get_vertical_line_to_graph GraphScene.get_area
381
+ :ref_methods : GraphScene.setup_axes GraphScene.get_graph GraphScene.get_vertical_line_to_graph GraphScene.get_area
382
382
383
383
class GraphAreaPlot(GraphScene):
384
384
def __init__(self, **kwargs):
@@ -404,7 +404,7 @@ Plotting with Manim
404
404
.. manim :: HeatDiagramPlot
405
405
:save_last_frame:
406
406
:ref_modules: manim.scenes.graph_scene
407
- :ref_functions : GraphScene.setup_axes GraphScene.coords_to_point
407
+ :ref_methods : GraphScene.setup_axes GraphScene.coords_to_point
408
408
409
409
class HeatDiagramPlot(GraphScene):
410
410
def __init__(self, **kwargs):
@@ -441,7 +441,7 @@ Special Camera Settings
441
441
.. manim :: FollowingGraphCamera
442
442
:ref_modules: manim.scene.moving_camera_scene
443
443
:ref_classes: GraphScene MovingCameraScene MoveAlongPath Restore
444
- :ref_functions : Mobject.add_updater
444
+ :ref_methods : Mobject.add_updater
445
445
446
446
class FollowingGraphCamera(GraphScene, MovingCameraScene):
447
447
def setup(self):
@@ -474,7 +474,7 @@ Special Camera Settings
474
474
.. manim :: MovingZoomedSceneAround
475
475
:ref_modules: manim.scene.zoomed_scene
476
476
:ref_classes: ZoomedScene BackgroundRectangle UpdateFromFunc
477
- :ref_functions : Mobject.add_updater ZoomedScene.get_zoomed_display_pop_out_animation
477
+ :ref_methods : Mobject.add_updater ZoomedScene.get_zoomed_display_pop_out_animation
478
478
479
479
class MovingZoomedSceneAround(ZoomedScene):
480
480
# contributed by TheoremofBeethoven, www.youtube.com/c/TheoremofBeethoven
@@ -543,7 +543,7 @@ Special Camera Settings
543
543
.. manim :: FixedInFrameMObjectTest
544
544
:save_last_frame:
545
545
:ref_classes: ThreeDScene
546
- :ref_functions : ThreeDScene.set_camera_orientation ThreeDScene.add_fixed_in_frame_mobjects
546
+ :ref_methods : ThreeDScene.set_camera_orientation ThreeDScene.add_fixed_in_frame_mobjects
547
547
548
548
class FixedInFrameMObjectTest(ThreeDScene):
549
549
def construct(self):
@@ -558,7 +558,7 @@ Special Camera Settings
558
558
.. manim :: ThreeDLightSourcePosition
559
559
:save_last_frame:
560
560
:ref_classes: ThreeDScene ThreeDAxes ParametricSurface
561
- :ref_functions : ThreeDScene.set_camera_orientation
561
+ :ref_methods : ThreeDScene.set_camera_orientation
562
562
563
563
class ThreeDLightSourcePosition(ThreeDScene):
564
564
def construct(self):
@@ -577,7 +577,7 @@ Special Camera Settings
577
577
578
578
.. manim :: ThreeDCameraRotation
579
579
:ref_classes: ThreeDScene ThreeDAxes
580
- :ref_functions : ThreeDScene.begin_ambient_camera_rotation ThreeDScene.stop_ambient_camera_rotation
580
+ :ref_methods : ThreeDScene.begin_ambient_camera_rotation ThreeDScene.stop_ambient_camera_rotation
581
581
582
582
class ThreeDCameraRotation(ThreeDScene):
583
583
def construct(self):
@@ -593,7 +593,7 @@ Special Camera Settings
593
593
594
594
.. manim :: ThreeDCameraIllusionRotation
595
595
:ref_classes: ThreeDScene ThreeDAxes
596
- :ref_functions : ThreeDScene.begin_3dillusion_camera_rotation ThreeDScene.stop_3dillusion_camera_rotation
596
+ :ref_methods : ThreeDScene.begin_3dillusion_camera_rotation ThreeDScene.stop_3dillusion_camera_rotation
597
597
598
598
class ThreeDCameraIllusionRotation(ThreeDScene):
599
599
def construct(self):
@@ -664,7 +664,7 @@ Advanced Projects
664
664
665
665
.. manim :: OpeningManim
666
666
:ref_classes: Tex MathTex Write FadeInFrom LaggedStart NumberPlane Create
667
- :ref_functions : NumberPlane.prepare_for_nonlinear_transform
667
+ :ref_methods : NumberPlane.prepare_for_nonlinear_transform
668
668
669
669
class OpeningManim(Scene):
670
670
def construct(self):
@@ -722,7 +722,8 @@ Advanced Projects
722
722
723
723
.. manim :: SineCurveUnitCircle
724
724
:ref_classes: MathTex Circle Dot Line VGroup
725
- :ref_functions: Mobject.add_updater Mobject.remove_updater always_redraw
725
+ :ref_methods: Mobject.add_updater Mobject.remove_updater
726
+ :ref_functions: always_redraw
726
727
727
728
class SineCurveUnitCircle(Scene):
728
729
# contributed by heejin_park, https://infograph.tistory.com/230
0 commit comments