| 1 | initial version |
For a treatment after creating the plot, there is now "add_condition"
x,y,z = var('x,y,z')
P = implicit_plot3d(z-x*y,(-2,2),(-2,2),(-2,2))
def condi(x,y,z):
return bool(x*x+y*y+z*z <= Integer(1))
P.add_condition(condi,8)
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.