| Author |
Comment/Response |
Forum Moderator
email me
 |
05/22/98 4:34pm
> >
>
> Hello! I was just wondering if anybody knows how to get rid of the mesh lines on a ListSurfacePlot3D. I have a bunch of data that makes a real nice picture, but it has lines all over it. It would be nice to not have those.
>
> Thanks,
> -Burke
> www.ColoradoKidd.com/Mathematica
>
=====
Try using EdgeForm.
Here are some points:
In[27]:= apts = Table[{Cos[t] Cos[u], Sin[t] Cos[u],
Sin[u]}, {t, 0, Pi, Pi/5},
{u, 0, Pi/2, Pi/10}];
Plot the points:
In[33]:= gr=ListSurfacePlot3D[apts]
Redisply the graph with a null EdgeForm inserted at the beginning of the Graphics3D expression.
In[34]:= Show[Insert[gr, EdgeForm[], {1,1}]]
Tom Zeller
Forum Moderator
URL: , |
|