Re: Fills in StackGraphics ?
- To: mathgroup at smc.vnet.net
- Subject: [mg43303] Re: Fills in StackGraphics ?
- From: AES/newspost <siegman at stanford.edu>
- Date: Sun, 24 Aug 2003 04:54:59 -0400 (EDT)
- References: <bi7ncs$p6j$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
In article <bi7ncs$p6j$1 at smc.vnet.net>,
Omega Consulting <info at omegaconsultinggroup.com> wrote:
> >Trying to stack a Table of Filled Plots, as in:
> >and it basically works, except I'm unable to get any Fill except what I
> >guess is the Mathematica default (kind of a horrible purple).
> What you're seeing is the 3D lighting mechanism which colors a surface
> according to it's orientation. To turn that off and see the colors of the
> surfaces use Lighting->False.
>
> Show[ StackGraphics[ slices], Lighting->False]
Thanks! That works -- but any idea why I also get an accompanying error
message
StackGraphics::"bdpts": "Error in non-convex triangulation."
Exact code I'm using is
In[6]:=
data = Table[{i, t Exp[-(i - t)^2/4]}, {t, 0, 10}, {i, 0, 10, 0.2}];
plots = Map[FilledListPlot[#, DisplayFunction -> Identity,
Fills -> White] &, data];
In[10]:=
Show[StackGraphics[plots], Lighting -> False];