MathGroup Archive 2002

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: How to suppress the mesh in ParametricPlot3D ?

  • To: mathgroup at smc.vnet.net
  • Subject: [mg35282] Re: How to suppress the mesh in ParametricPlot3D ?
  • From: "Raf" <r_a_f at yahoo.it>
  • Date: Sat, 6 Jul 2002 05:44:28 -0400 (EDT)
  • References: <ag3en0$73b$1@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

Hi,
Try this,

ParametricPlot3D[ {Sin[v]Cos[u], Sin[v]Sin[u], Cos[v]}, {u, 0, 2Pi}, {v, 0,
    Pi}, PlotPoints -> 50,
  DisplayFunction -> ($DisplayFunction[Insert[#, EdgeForm[], {1, 1}]] &)]

Bye,
Raf.

"Jos R Bergervoet" <antispam at nospam.com> ha scritto nel messaggio
news:ag3en0$73b$1 at smc.vnet.net...
> 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
>



  • Prev by Date: Re: Optimization
  • Next by Date: AppendTo VERY slow
  • Previous by thread: How to suppress the mesh in ParametricPlot3D ?
  • Next by thread: Re: How to suppress the mesh in ParametricPlot3D ?