manim
manim copied to clipboard
Multi-graph scenes?
Is it currently possible to create scenes with multiple graphs at once (i.e. for demonstrating connections between f(x) and f'(x) vertically)? It seems like that would be helpful if not already possible. I can draw multiple FunctionGraph
s but not have multiple axes and planes.
You can just change self.graph_origin
and run self.setup_axes
again
Hey @Li357, I think I've found a solution to your problem. Check this StackOverFlow post.
How do you do this without using a GraphScene?
For future reference for anyone else who sees this, you can just shift and scale the graphs. Ex: my_axes.scale(0.4).shift(UP * 2)