Is it possible to plot a 3d polyhedron with transparent background? When I use .plot(transparent=True) on a 2d polyhedron, and save to a file, the background is transparent.
When I do the same for a 3d polyhedron, the background is white. p2=Polyhedron(vertices=[[0,1],[1,0]]) p3=Polyhedron(vertices=[[0,1,1],[1,0,0]]) p2_plot = p2.plot(transparent=True) p3_plot = p3.plot(transparent=True) p2_plot.save(the_file2) # saved image has transparent background p3_plot.save(the_file3) # saved image has white background thanks, Daniel -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sage-support. For more options, visit https://groups.google.com/d/optout.
