On Tue, Dec 8, 2009 at 3:27 AM, Matthias Michler wrote:
>
> I added an example program which illustrates my idea using transformation
> of
> axes-coord. to screen-coord. and from screen-coord. to fig-coord.
>
> point_screen = ax.transAxes.transform_point(point_ax)
> point_fig = fig.transFigure.i
Hi Abhi,
I added an example program which illustrates my idea using transformation of
axes-coord. to screen-coord. and from screen-coord. to fig-coord.
point_screen = ax.transAxes.transform_point(point_ax)
point_fig = fig.transFigure.inverted().transform_point(point_screen)
I don't know if