box removal
Is there any way to remove the box surrounding 3d output?
add a comment
You can add frame=false to show() or save()
var('x,y')
p=plot3d(x^2-y^2, (x,-2,2), (y,-2,2))
p.show(frame=false)
p.save('/tmp/foo.png',frame=false)
Asked: 2010-12-14 00:52:05 +0100
Seen: 980 times
Last updated: Dec 14 '10
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.