Re: Fills in StackGraphics ?
- To: mathgroup at smc.vnet.net
- Subject: [mg43281] Re: Fills in StackGraphics ?
- From: AES/newspost <siegman at stanford.edu>
- Date: Sat, 23 Aug 2003 08:09:09 -0400 (EDT)
- References: <bht3lf$n2k$1@smc.vnet.net> <bi193g$akf$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
In article <bi193g$akf$1 at smc.vnet.net>, Mike <mikeh1980 at optusnet.com.au> wrote: > On 19/8/03 10:02 PM, in article bht3lf$n2k$1 at smc.vnet.net, "AES/newspost" > <siegman at stanford.edu> wrote: > > > Trying to stack a Table of Filled Plots, as in: > > > > slices = Table[ FilledPlot[ f[n, x], {x, 0, 1}, Fills -> White, > > DisplayFunction -> Identity], {n,0,5} ] > > > > Show[ StackGraphics[ slices]] > > > > 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). > I (think) I recall an example of stacked graphics with filled plots in Tom > Wickham Jones' book on mathematica graphics. That might be a place to look > if you can get your hands on a copy. > > Mike Yes, thanks, I first learned about StackGraphics in Wickham-Jones. However, when I try to reproduce their example: 1) Fills works on FilledPlots made individually 2) Fills *doesn't* work on lists of plots made using Map or Table. 3) Although StackGraphics makes the stacked plot, it first gives an error message StackGraphics::"bdpts": "Error in non-convex triangulation." 4) The examples in W-J all use the syntax "ListFilledPlot" instead of "FilledListPlot",which I believe is the correct form . . . ?? For what I want to do I'd just as soon use ListPlot3D instead, if I could just turn off the mesh lines in one direction and keep only the mesh lines that are in the stack plots. (And, ListPlot3D seems to run significantly faster.)