|
From: Jeffrey S. <jef...@gm...> - 2013-07-26 20:41:27
|
I have version 1.2.x of matplotlib. The minimal example shows the case
below. The back wall will lose its lines. Is there a reason for this? Is
there a transparent layer there so eps has to put it as a solid wall? If
so, is there a way to remove that transparent layer?
Pdf and the other backends have no problem exporting correctly.
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
plt.savefig('testing.eps')
|