Is there any way to change the view box on a 3D graph?
I plotted:
var('z')
E = EllipticCurve(QQ, [0,0,0,-1/4,0])
wp = E.weierstrass_p().laurent_polynomial()
wpp = derivative(wp,z)
f = (lambda u,v: wp(u+i*v).real(), lambda u,v: wp(u+i*v).imag(), lambda u,v: wpp(u+i*v).imag())
parametric_plot3d(f, (0.001,3.74), (0.001,3.74))
I just want to look at [-1,1] x [-1,1] x [-1,1]
, I can't seem to find the option.