Re: FullGraphics[] does not work properly
- To: mathgroup at smc.vnet.net
- Subject: [mg89935] Re: FullGraphics[] does not work properly
- From: Januk <ggroup at sarj.ca>
- Date: Wed, 25 Jun 2008 06:22:40 -0400 (EDT)
- References: <g3q7h9$aef$1@smc.vnet.net>
The difference appears to be the default setting for AspectRatio. For
Plot, the default is 1/GoldenRatio, whereas for Graphics, it is
Automatic. Run the following to verify:
Options[#, AspectRatio] & /@ {Plot, Graphics}
So in your example, try:
Show[FullGraphics[g], AspectRatio -> 1/GoldenRatio]
Hope that helps,
Januk
On Jun 24, 3:25 am, lehi... at gmail.com wrote:
> Hello,
> Consider the following:
> g = Plot[Sin[x], {x, 0, 10}]
> FullGraphics[g]
> The two generated plots are not the same. But the Documentation says:
> "FullGraphics[g] should display the same as g, though it may have a
> different internal structure."
> Obviously FullGraphics[] does not work properly. :(