MathGroup Archive 2012

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: without individual scaling?

  • To: mathgroup at smc.vnet.net
  • Subject: [mg124327] Re: without individual scaling?
  • From: "Scot T. Martin" <smartin at seas.harvard.edu>
  • Date: Tue, 17 Jan 2012 03:22:23 -0500 (EST)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • References: <201201162204.RAA15204@smc.vnet.net>

My favorite commands for doing the kinds of things you want:

Grid[....] (instead of GraphicsRow, GraphicsGrid, which seem to do funny things for me)

Show[...] with Inset[...] as needed using Scaled[...] for coordinates.

When you make your Plots/Graphics, make good use of ImagePadding option (i.e., fixed to same value for everything) so that your axes all line up nicely.


________________________________________
From: David Bevan [david.bevan at pb.com]
Sent: Monday, January 16, 2012 17:04
To: mathgroup at smc.vnet.net
Subject: [mg124327] Re: without individual scaling?

Hi!

Since asking this question I have discovered GraphicsRow[].

What I need is some way of doing GraphicsRow[objs] but without each graphics getting scaled individually.

Equivalently, I need is some way of doing Show[objs] but with the graphics in a row, not overlaid.

Clearly, Mathematica has the information to do this. Is there no way for a user to access this information?

Thanks.

David %^>

________________________________________
From: David Bevan [david.bevan at pb.com]
Sent: 10 January 2012 10:57
To: mathgroup at smc.vnet.net
Subject: [mg124327] Graphics bounding box in source coordinates?

Is there some way of getting the bounding box of Graphics in the source coordinate system? For example, Show can be used to display an array of objects on top of each other:

showObj[z_]:=Graphics[{Circle[{z,z},z]}]
objs=showObj/@Range[5];
Show[objs]

But I want to display them side by side. The following can be used to offset each object by a fixed interval:

graphicsArray[g_,x_]:=Graphics[MapIndexed[Translate[#1,{x (First[#2]-1),0}]&,First/@g]]
graphicsArray[objs,5]

But I would like the gaps between each object to be of fixed size. So I want a version of graphicsArray which determines the value to pass to Translate by getting the bounding box info from each Graphic.

Rasterize[,"BoundingBox"] doesn't help because it returns the size in pixels after scaling:

Rasterize[#,"BoundingBox"]&/@objs
{{360,359,182},{360,359,182},{360,359,182},{360,359,182},{360,359,182}}

My real objects are more complex than these simple circles (and I want something reusable with different objects).

Thanks for your help (and apologies if I missed something obvious in the documentation).

David %^>




  • Prev by Date: Re: Locator points not working in Manipulate calling RegionPlot, etc.
  • Next by Date: Re: How to check whether an infinite set is closed under addition?
  • Previous by thread: Re: without individual scaling?
  • Next by thread: Re: without individual scaling?