jeu de matplotlib graphique 3d ratio d'aspect?

import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D

Réglage du rapport d'aspect des œuvres de tracés 2d:

ax = plt.axes()
ax.plot([0,1],[0,10])
ax.set_aspect('equal','box')

Mais pas pour la 3d:

ax = plt.axes(projection='3d')
ax.plot([0,1],[0,1],[0,10])
ax.set_aspect('equal','box')

Est-il une syntaxe différente pour la 3d cas, ou il n'est pas mis en œuvre?

InformationsquelleAutor hatmatrix | 2011-11-15