var('x y') W = plot3d(x^2+y^2,(x,-2,2),(y,-2,2)) show(W, figsize=6)
1 | initial version |
var('x y') W = plot3d(x^2+y^2,(x,-2,2),(y,-2,2)) show(W, figsize=6)
var('x y') W = plot3d(x^2+y^2,(x,-2,2),(y,-2,2)) show(W, figsize=6)
Apparently the option figsize does not work in 3D. 3D.
sage: var('x, y')
sage: W = plot3d(x^2 + y^2, (x, -2, 2), (y, -2, 2))
sage: show(W, figsize=6)
Any suggestions? var('x y')
W = plot3d(x^2+y^2,(x,-2,2),(y,-2,2))
show(W, figsize=6)