Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork7.9k
Closed
Labels
Milestone
Description
When viewed from above, the default grids are not square, but are distorted into diamonds/parallelograms depending on the vertical rotation angle:
import matplotlib.pyplot as pltfrom mpl_toolkits.mplot3d import Axes3Dfig = plt.figure()ax = fig.gca(projection='3d')ax.view_init(90,45) # or by manual rotationplt.show()
The projection should not include non-uniform scale (or skew) components by default. Furthermore, it's not at all obvious how to fix this as a user.
Couldn't find another issue that directly reports this, so put it here.