Re: Missing Graphics
- To: mathgroup at smc.vnet.net
- Subject: [mg54274] Re: [mg54248] Missing Graphics
- From: "David Park" <djmp at earthlink.net>
- Date: Mon, 14 Feb 2005 23:38:23 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
Bruce,
The following works.
g = Plot3D[Sin@x Cos@y, {x, -Pi, Pi}, {y, -Pi, Pi},
DisplayFunction -> Identity];
Scan[Show[#@g ,
DisplayFunction -> $DisplayFunction] &, {SurfaceGraphics, Graphics,
ContourGraphics,
DensityGraphics}];
But if we leave the DisplayFunction -> $DisplayFunction out of the Show
statement, why does the Graphics case display? I would expect none of them
to display. Is this another case where WRI has forgotten to copy over one of
the options in the graphics conversion routines?
David Park
djmp at earthlink.net
http://home.earthlink.net/~djmp/
From: Bruce Colletti [mailto:vze269bv at verizon.net]
To: mathgroup at smc.vnet.net
Re Mathematica 5.1.
This code displays (as intended) five versions of g (first two are same):
g = Plot3D[Sin@x Cos@y, {x, -PI, PI}, {y, -PI, PI}];
Scan[Show@#@g &, {SurfaceGraphics, Graphics, ContourGraphics,
DensityGraphics}];
However, when DisplayFunction->Identity is added to Plot3D, only the
SurfaceGraphics plot appears. Why don't the others?
Thankx.
Bruce
- Follow-Ups:
- Re: Re: Missing Graphics
- From: Murray Eisenberg <murray@math.umass.edu>
- Re: Re: Missing Graphics