Re: Overlaid parametric plots are too faint
- To: mathgroup at smc.vnet.net
- Subject: [mg123662] Re: Overlaid parametric plots are too faint
- From: Dan <dflatin at rcn.com>
- Date: Thu, 15 Dec 2011 04:52:09 -0500 (EST)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- References: <jc9vvl$a18$1@smc.vnet.net>
On Dec 14, 6:06 am, Chris Young <c... at comcast.net> wrote: > Managed to fix the problem just by setting Opacity to zero. > > Any tips on the fastest _and_ sharpest way to plot this kind of disk > with colored sectors would be appreciated, though. > > Show[ > Table[ > ParametricPlot[ > { > Through[{Re, Im}[u Exp[(- 15 =B0 + (k + v) 30 =B0) I]]] > }, > {u, 0, 1}, {v, 0, 1}, > > Mesh -> None, > PlotStyle -> {Opacity[1], Hue[k/12, 1, 1]} > ], > {k, 0, 11} > ], > PlotRange -> 1.1 > ] How about Show[Graphics[ Table[{Hue[k/12, 1, 1], Disk[{0, 0}, 1, {k, k + 1} 30 \[Degree]]}, {k, 0, 11}]]]