Re: Re: if only on parameter of 2D is to be shown in 3D
- To: mathgroup at smc.vnet.net
 - Subject: [mg102888] Re: [mg102865] Re: if only on parameter of 2D is to be shown in 3D
 - From: Bob Hanlon <hanlonr at cox.net>
 - Date: Tue, 1 Sep 2009 03:53:56 -0400 (EDT)
 - Reply-to: hanlonr at cox.net
 
to suppress the lines just use the Mesh option.
Row[ParametricPlot3D[{u + v, u - v, v*u},
    {u, -4, 4}, {v, -4, 4},
    ImageSize -> 200,
    Mesh -> #] & /@
  {Full, {15, 0}, {0, 15}}]
Bob Hanlon
---- gudi <mathma18 at hotmail.com> wrote: 
=============
On Aug 30, 3:05 pm, Bob Hanlon <hanl... at cox.net> wrote:
----
Hi Bob,
I did not want to  watch parameter increments, but suppression of
either u or v lines in each display.
With your full  indicating several variations to pick out from, I got
it right here:
For u lines,
UU = Show[ Table[ParametricPlot3D[{u + v, u - v, v*u}, {v, -4, 2},
PlotStyle -> Directive[Blue]], {u, -2, 4, .2}]]
If v lines are needed,
VV = Show[ Table[ParametricPlot3D[{u + v, u - v, v*u}, {u, -4,
2},      PlotStyle -> Directive[Red]], {v, -2, 4, .2}]]
Show[UU, VV] ,  if both are to be seen in different colors.
Now remains only the requirement for showing opaque shaded surface
option.
Thanks  again,
Narasimham