Re: contourplot in xy plane of Graphics3D
- To: mathgroup at smc.vnet.net
- Subject: [mg103067] Re: [mg102918] contourplot in xy plane of Graphics3D
- From: Bob Hanlon <hanlonr at cox.net>
- Date: Sun, 6 Sep 2009 07:39:07 -0400 (EDT)
- Reply-to: hanlonr at cox.net
Show[
Plot3D[Sin[x + y^2],
{x, -3, 3}, {y, -2, 2}],
Plot3D[-2, {x, -3, 3}, {y, -2, 2},
ColorFunction ->
Function[{x, y, z},
Hue[(Sin[x + y^2] + 1)/2]],
ColorFunctionScaling -> False,
Mesh -> False,
PlotPoints -> 50],
PlotRange -> All]
Bob Hanlon
---- Tobias Baumann <ttobsen at hotmail.com> wrote:
=============
Hi All
I need to show a contourplot in the xy-plane of an Graphics3D. I tried
with inset, but it doesn't work because there's an error message: "Inset
is not a Graphics3D primitive or directive."
Thanks for help.
Cheers Tobias