box removal
Is there any way to remove the box surrounding 3d output?
add a comment
Is there any way to remove the box surrounding 3d output?
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: 14 years ago
Seen: 798 times
Last updated: Dec 14 '10