Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Like this

sage: var('x,y,z')
(x, y, z)
sage: P = plot3d(2 + sin(x) + cos(y), (x,-1,1), (y,-1,1))
sage: def condition(x,y,z):
....:     return bool(x*x<y)
sage: P.add_condition(condition)