Ask Your Question

markisa's profile - activity

2016-07-22 16:59:37 +0200 received badge  Notable Question (source)
2016-03-19 14:44:19 +0200 received badge  Popular Question (source)
2012-05-21 13:29:06 +0200 received badge  Student (source)
2012-05-21 06:47:33 +0200 asked a question multiple parametric_plot's with for loop

I'm studying differential geometry of curves and surfaces, and I have a question regarding multiple plots on one graphics, that is i want to plot multiple lines on one plot in for loop, but when I try to do that it shows only the last plot...

a,b,v,u = var('a b v u'); rectangular=(a,b,v);
z=0;
for i in range(81):
    z=i*pi/20;z
    pt=plot3d(z*v,(v,0,5),(a,0,5),(b,0,5),transformation=rectangular,plot_points=80,color="blue")
    show(pt)