MathGroup Archive 1998

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

Search the Archive

Re: About plotting a surface




Paul Abbott wrote >Arhur Luiz Amaral da Cunha wrote:
>
>> I would like to know how to take the mesh off a parametric surface using
>> the command ParametricPlot3D. I tried to use the  "Mesh->False" option
>> but it did not work within ParametricPlot3D despite  it did work within
>> Plot3D. I would appriciate it wether you could give me an advice. I
>> look forward to your reply.
>
>Roman Maeder gives the following one-liner that removes mesh lines from
>any 3D graphic in The Mathematica Journal 2(3), 32:
>
> NoMesh[Graphics3D[c_,rest___]]:=Graphics3D[{EdgeForm[],c},rest]


This function needs a little help if there are already EdgeForm
directives (that we may not be aware of) - these need to be removed

NoMesh2[Graphics3D[c_,rest___]]:=
Graphics3D[{EdgeForm[],c/._EdgeForm :>Sequence[]},rest]

------------------------------------------------------------- 
Allan Hayes
Training and Consulting
Leicester UK
http://www.haystack.demon.co.uk
hay@haystack.demon.co.uk
voice: +44 (0)116 271 4198
fax: +44(0)116 271 8642




  • Prev by Date: mathematica
  • Next by Date: Re: Re: Finding the Path to the Active Notebook
  • Prev by thread: Re: About plotting a surface
  • Next by thread: expressions as arguments to functions.