1

在 manim 中,我想获取图表上某个点的坐标?

class Formula2(GraphScene):
    CONFIG = {
        "x_min" : 0,
        "x_max" : 100.3,
        "x_tick_frequency": 10,
        "y_min" : 0,
        "y_max" : 100.3,
        "y_tick_frequency": 10,
        "graph_origin" : [-4,-3,0] ,
        "function_color" : RED ,
        "axes_color" : WHITE ,
        "x_labeled_nums" : range(10,100,10),
        "y_labeled_nums" : range(10,100,10)
    }
    def construct(self):
        self.setup_axes(animate=True)```
What's my next method or function?
4

1 回答 1

2

您可以使用该方法coords_to_point,更多详细信息在我的视频中

于 2020-02-06T23:19:15.043 回答