-
-
Notifications
You must be signed in to change notification settings - Fork 355
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
aspect_ratio=:equal in 3d plots doesn't always work? #1949
Comments
This is a huge issue IMO and largely ignored by many plotting libraries. Without proper equal aspect ratio figures, many use cases revolving around movement through three dimensional space lose all physical intuition. Has there been any progress on this? I know this is something that is not available in matplotlib, plotly, etc. natively. Is there a way for us to get around that limitation? |
Thanks @JMmontilla for laying out this issue in detail. Along with @rjpower4 I'd like to know if there has been any progress here. I've been getting into Julia recently for physical applications and having equal axis scaling in all three dimensions is very important to me. I'm using the Plots Plotly backend for its interactivity and ability to render multiple plots in-browser, and I'm interested in either a native feature addition or some sort of workaround I can code up. Any advice is appreciated. Thanks! |
+1 |
+1 |
I have been trying to plot spheres but there are cases when the
aspect_ratio=:equal
command just doesn't work, example:which will give me this:
but if I plot the second sphere with
rad=5
then this is the result:Is this some kind of limitation of Plots.jl ? It looks like it is deciding not to do
aspect_ratio=:equal
just because the data is too stretched, but I need to plot it with equally scaled axis (or the spheres won't look like it). Any advise?The text was updated successfully, but these errors were encountered: