Skip to content

Commit

Permalink
Remove :meth:~.CoordinateSystem.get_graph usage from :class:`~.Axes…
Browse files Browse the repository at this point in the history
…` example. (#2342)
  • Loading branch information
Darylgolden authored Nov 30, 2021
1 parent ddb0395 commit 7191e1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manim/mobject/coordinate_systems.py
Original file line number Diff line number Diff line change
Expand Up @@ -1737,7 +1737,7 @@ def construct(self):
)
# x_min must be > 0 because log is undefined at 0.
graph = ax.get_graph(lambda x: x ** 2, x_range=[0.001, 10], use_smoothing=False)
graph = ax.plot(lambda x: x ** 2, x_range=[0.001, 10], use_smoothing=False)
self.add(ax, graph)
Parameters
Expand Down

0 comments on commit 7191e1c

Please sign in to comment.