是否可以在 manim 中的图形对象上使用 ReplacementTransform?

Is it possible to use ReplacementTransform on a graph object in manim?

我对 manim 还很陌生

我希望能够绘制折线图,​​并在绘制线条后,围绕其截距旋转它。但是现在,转换没有发生:我的代码只显示相同的未更改的 graph0 行并且不执行 ReplacementTransform。

我也尝试过 pivot,它有效,但是绕着它的中心旋转线,即使我可以让它绕着它的截距旋转,我也不确定如何得到我想要的每个方程枢轴.

有没有办法让这条线转向我用 graph0、graph1 和 graph2 指定的不同方程?

这是我的代码

class LinePivot(GraphScene):
CONFIG = {
    "y_max": 40,
    "y_min": 0,
    "x_max": 14,
    "x_min": 0,
    "y_tick_frequency": 5,
    "x_tick_frequency": 1,
    "axes_color": BLACK,
    "y_label_direction": LEFT,
    "x_label_direction": DOWN,
    "label_nums_color": BLACK,
    "camera_config": {
        "background_color": WHITE,
    },
}

def construct(self):
    self.setup_axes()

    graph0 = self.get_graph(lambda x: 5 + 2 * x, color=BLACK)
    graph1 = self.get_graph(lambda x: 5 + 3 * x, color=BLACK)
    graph2 = self.get_graph(lambda x: 5 + 4 * x, color=BLACK)

    self.play(ShowCreation(graph0))
    self.wait()
    ReplacementTransform(graph0, graph1, run_time=1)
    self.wait()
    ReplacementTransform(graph1, graph2, run_time=1)
    self.wait()
ReplacementTransform(graph0, graph1, run_time=1)

只创建变换但不将其添加到场景或渲染它。您想改用

self.play(ReplacementTransform(graph0, graph1), run_time=1)