Re: Mesh in one direction only?
- To: mathgroup at smc.vnet.net
- Subject: [mg43355] Re: Mesh in one direction only?
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Tue, 26 Aug 2003 07:13:29 -0400 (EDT)
- Organization: Universitaet Leipzig
- References: <bi7ln7$onb$1@smc.vnet.net>
- Reply-to: kuska at informatik.uni-leipzig.de
- Sender: owner-wri-mathgroup at wolfram.com
Hi,
something like this :
plt = Graphics3D[
Plot3D[Sin[x^2 + y^2], {x, -Pi, Pi}, {y, -Pi, Pi}, PlotPoints -> 30,
DisplayFunction -> Identity]]
Show[plt /.
Polygon[pnts_] :> {{EdgeForm[], Polygon[pnts]},
Line /@ Part[Transpose[{pnts, RotateLeft[pnts]}], {1, 3}]},
DisplayFunction -> $DisplayFunction]
Regards
Jens
AES/newspost wrote:
>
> Is it possible to create 3D graphics, such as ListPlot3D, which will
> show the mesh lines in one direction only?
>
> Something akin to
>
> MeshStyle->{ {mesh style for x lines}, {mesh style for y lines} } ?
>
> [I'm trying to do convey an effect similar to what StackGraphics does,
> but I have other problems with it.]