-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
[feature request] multiple 3d plots with tied viewing angles #11181
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
You may always connect those subplots through events. A possible solution is given in this Stackoverflow answer of mine: Using Matplotlib 3D axes, how to drag two axes at once? Code here for completeness
I guess one could easily extent this functionality to any amount of axes, but I currently wouldn't know where in the code to put that. As a figure level method? Or a new class? Using a |
fwiw I feel like a recipe such as the one you proposed is good enough... |
The problem with this recipe above is that it uses the "private" |
I think this would be a nice new feature - kind of like |
Yep, just mind that rotation is a priori independent on sharing. You might synchronize the viewing angle, but not share the axes or vice versa. This is easily accounted for when manually creating the callback, but for some automated option it will require two independent groupers or similar. |
cc @nfoti |
This issue has been marked "inactive" because it has been 365 days since the last comment. If this issue is still present in recent Matplotlib releases, or the feature request is still wanted, please leave a comment and this label will be removed. If there are no updates in another 30 days, this issue will be automatically closed, but you are free to re-open or create a new issue if needed. We value issue reports, and this procedure is meant to help us resurface and prioritize issues that have not been addressed yet, not make them disappear. Thanks for your help! |
Attn @scottshambaugh ? |
I have a figure with a number of 3d subplots that are all showing basically the same things. I'd really love to have a way to rotate any one of these plots in the UI and have all of the others adjust their viewing angles to match, ideally in real-time.
The text was updated successfully, but these errors were encountered: