MathGroup Archive 2002

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

Search the Archive

How to suppress the mesh in ParametricPlot3D ?

  • To: mathgroup at smc.vnet.net
  • Subject: [mg35266] How to suppress the mesh in ParametricPlot3D ?
  • From: Jos R Bergervoet <antispam at nospam.com>
  • Date: Fri, 5 Jul 2002 02:20:46 -0400 (EDT)
  • Organization: Philips Research Laboratories
  • Sender: owner-wri-mathgroup at wolfram.com

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: ContourPlot3D: plot implicitly defined surfaces
  • Next by Date: Re: Art Graphics in Mathematica
  • Previous by thread: Re: ContourPlot3D: plot implicitly defined surfaces
  • Next by thread: Re: How to suppress the mesh in ParametricPlot3D ?