Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

I am afraid you explicitly have to draw the axes.

var('x,y,z')
d = 4
P = implicit_plot3d(x^3+y^2-3*z==0,(x,-2,2),(y,-2,2),(z,-3,3))
P += arrow((-d,0,0),(d,0,0))
P += arrow((0,-d,0),(0,d,0))
P += arrow((0,0,-d),(0,0,d))
P.show()