Re: Dashing[{}]
- To: mathgroup at smc.vnet.net
- Subject: [mg88496] Re: Dashing[{}]
- From: Szabolcs <szhorvat at gmail.com>
- Date: Tue, 6 May 2008 06:45:10 -0400 (EDT)
- References: <fvmn00$8hq$1@smc.vnet.net>
On May 5, 12:19 pm, Steve Gray <stev... at roadrunner.com> wrote:
> If I invoke Dashed somewhere in my Graphics3D display code=
, a
> subsequent "Dashing[{}], Line[...]" is supposed to draw solid lines
> thereafter. It seems to have no effect as everything after that is
> still dashed. Might there be something simple I'm missing? Or a bug?
You should post a code snippet that produces wrong results. I cannot
reproduce the problem with this simple example:
Graphics[
{Dashing[{.05, .05}], Line[{{0, 0}, {1, 1}}], Dashing[{}],
Line[{{1, 1}, {2, 0}}]}
]
Also note that Dashing[] will only have an effect inside the enclosing
{ }:
Graphics[
{{Dashing[{.05, .05}], Line[{{0, 0}, {1, 1}}]},
Line[{{1, 1}, {2, 0}}]}
]