Re: How to suppress the mesh in ParametricPlot3D ?
- To: mathgroup at smc.vnet.net
- Subject: [mg35296] Re: How to suppress the mesh in ParametricPlot3D ?
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Sat, 6 Jul 2002 06:10:21 -0400 (EDT)
- Organization: Universitaet Leipzig
- References: <ag3en0$73b$1@smc.vnet.net>
- Reply-to: kuska at informatik.uni-leipzig.de
- Sender: owner-wri-mathgroup at wolfram.com
Hi,
you wish to supress the polygon outlines ! and
ParametricPlot3D[Evaluate[
Append[sphere,EdgeForm[]]
], {u,0,2Pi}, {v, 0,Pi}, PlotPoints -> 50]
will do it.
Regards
Jens
Jos R Bergervoet wrote:
>
> How can I get a partametric 3D plot without gridlines on it? I tried
> "Mesh -> False" (also SurfaceMesh) but to no avail!
>
> sphere = {Sin[v]Cos[u], Sin[v]Sin[u], Cos[v]}
>
> ParametricPlot3D[sphere, {u,0,2Pi}, {v, 0,Pi}, PlotPoints -> 50]
> (* OK, but meshed *)
>
> ParametricPlot3D[sphere, {u,0,2Pi}, {v, 0,Pi},
> PlotPoints -> 50, Mesh -> False] (* not accepted *)
>
> Thanks for any clues,
>
> Jos