Lines for exclusions too noticeable
- To: mathgroup at smc.vnet.net
- Subject: [mg123422] Lines for exclusions too noticeable
- From: Chris Young <cy56 at comcast.net>
- Date: Tue, 6 Dec 2011 03:14:54 -0500 (EST)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
If I say Exclusions -> None, the plot gets less sharp, but if I show
them, there's no way to get the lines thin.
Manipulate[
DensityPlot[
Floor[
Arg[
n*
Product[
(x + y I) - (p[[k, 1]] + p[[k, 2]] I),
{k, 1, Length[p]}
]
]
]/n,
{x, -2, 2}, {y, -2, 2},
ExclusionsStyle -> {LightGray, AbsoluteThickness[1]}
],
{{p, {{0, 0}, {1, 0}, {1, 1}, {0, 1}, {1, -1}}}, Locator,
LocatorAutoCreate -> True},
{{n, 6}, 0, 12, 1}
]