First time here? Check out the FAQ!
asked 3 years ago
var('x y') W = plot3d(x^2+y^2,(x,-2,2),(y,-2,2)) show(W, figsize=6)
updated 3 years ago
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?