how can I get an equidistant scaling for the X,Y and Z axis in a Matplolib 3D plot?
I already tried this:
ax = fig.add_subplot(111, projection='3d', aspect='equal')
But this only results in a equidistant scaling of the X and Y axis. How can I apply this to all three axes?
Thanks!