My question is quite simple : in matplotlib, how can I easily convert coordinates in Axis system to/from Data system
(Ideally I'm looking for a simple function output_coords = magic_func(input_coords)
)
Actually my exact problem is :
I'd like to plot an matplotlib.patches.Ellipse
with his center in Axis system but his size (width & length) in Data system.
But the transforms.blended_transform_factory
method doesn't work in this case.