f = x**2 + y**2
plot3d((f, (x, -3, 3), (y, -3, 3)),
    (-f, (x, -5, 5), (y, -5, 5)))
# Expected:
## Plot object containing:
## [0]: cartesian surface: x**2 + y**2 for x over (-3.0, 3.0) and y over (-3.0, 3.0)
## [1]: cartesian surface: -x**2 - y**2 for x over (-5.0, 5.0) and y over (-5.0, 5.0)
