| > | restart; |
| > | with(plots):with(plottools); |
Warning, the name changecoords has been redefined
Warning, the assigned name arrow now has a global binding
| > | a:=2;b:=5;c:=sqrt(a^3+b^3); |
| > | z:=a*sin(t);r:=c+a*cos(t); |
| > | x:=r*cos(s);y:=r*sin(s)*cos(s); |
| > | w:=solve(z=a/b*x,s); |
| > | plot3d([x,y,z],s=-w..w,t=0..2*Pi,scaling=constrained,grid=[40,40]); |
| > |
| > |