| 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()
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.