fig = plt.figure() ax = fig.add_subplot(projection='3d') ax.set_xlim((0, 5)) ax.set_ylim((0, 5)) ax.set_zlim((0, 5)) x = [1,2,3, 3,2,1] y = [2,1,2, 2,1,2] z = [1,1,1 ...
Trying to create a semitransparent Poly3DCollection fails as shown in the following. from mpl_toolkits.mplot3d import Axes3D from mpl_toolkits.mplot3d.art3d import Poly3DCollection import ...