| > | plot3d([x,x^2,z],x=-2..2,z=-3..3); |
cylinder with equation:
| > | plot3d([cos(x)*cos(y), cos(x)*sin(y), sin(x)], x = 0 .. 2*Pi, y = 0 .. Pi); |
Sphere of radius 1, with equation
| > | plot3d([3*cos(x)*cos(y),5*cos(x)*sin(y), 2*sin(x)],x=0..2*Pi,y=0..Pi); |
ellipsoid with equation
| > | plot3d([x, y, x^2+y^2], x = -2 .. 2, y = -2 .. 2); |
Paraboloid with equation
| > | plot3d([x,(x/4)^2+z^2,z],x=-4..4,z=-1..1); |
Paraboloid with equation
| > | plot3d([u*cos(v),u*sin(v),u],u=-2..2,v=0..2*Pi); |
cone with equation:
| > | plot3d([u*cos(v),u,u*sin(v)],u=-2..2,v=0..2*Pi); |
cone with equation:
| > | plot3d([u,5*u*cos(v),u*sin(v)],u=-2..2,v=0..2*Pi); |
cone with equation:
| > | plot3d([sqrt(1+u^2)*cos(v),sqrt(1+u^2)*sin(v),u],u=-2..2,v=0..2*Pi); |
Hyperboloid of one sheet with equation:
| > | plot3d([sqrt(1+u^2)*cos(v),u,sqrt(1+u^2)*sin(v)],u=-3..3,v=0..2*Pi); |
Hyperboloid of one sheet with equation:
| > | plot3d([u,sqrt(1+u^2)*cos(v),sqrt(1+u^2)*sin(v)],u=-3..3,v=0..2*Pi); |
Hyperboloid of one sheet with equation:
| > | plot3d([ u*cos(v), 2*u*sin(v), sqrt(u^2+1)], u=-2..2,v=0..2*Pi); |
Hyperboloid of two sheets with equation:
| > | plot3d([ u*cos(v), 2*u*sin(v), -sqrt(u^2+1)], u=-2..2,v=0..2*Pi); |
Lower part of the hyperboloid of two sheets with equation
| > | plot3d([x,y,(y/3)^2-x^2],x=-1..1,y=-3..3); |
Hyperbolic paraboloid with equation:
| > | plot3d([x,(z/3)^2-x^2,z],x=-1..1,z=-3..3); |
Hyperbolic paraboloid with equation:
| > | plot3d([(z/3)^2-y^2,y,z],y=-1..1,z=-3..3); |
Hyperbolic paraboloid with equation:
| > |