First time here? Check out the FAQ!
answered 4 years ago
This is much simpler now, just do :
sage: x,y,z = var('x,y,z') sage: a = implicit_plot3d(x^2+y^2+z^2-9, [x,-5,5], [y,-5,5],[z,-5,5]) sage: a.save("foo.stl")