Replies: 1 comment
-
curve_segment = ParametricCurve(t_func=graph.t_func, t_range=[5, 7, 0.1])
curve_segment.reverse_points()
self.play(MoveAlongPath(dot, curve_segment, run_time=4))
self.wait() |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a graph
And I wanted to move a point along this graph going from right to left (instead of from left to right). I tried this
But no matter what direction I order the start and end it just moves from left to right along the graph...
Here's the full scene if anyone wants to try it.
Beta Was this translation helpful? Give feedback.
All reactions