I have create an ellipse as follows
x=0
y=0
ells=Ellipse(xy=(x,y), #create ellipse
width =1,
height =2,
edgecolor='b',
fc='g',
alpha=0.3,
zorder=0)
I can't find out how to get reference to those points so I can directly assign them to variable. I read the docs on path, but I didn't see anything there that helped. The reason I need access to the points is that I want to apply a specific tranform to them that is more complex than I can do with the transform attribute of paths. I also tried indexing them like
ells[0] #and got
TypeError: 'Path' object does not support indexing
How do I get the points as an array?