Skip to content
Snippets Groups Projects
Commit 677cf3d0 authored by Colm Talbot's avatar Colm Talbot
Browse files

BUG: use kwargs for matplotlib Ellipse

parent 103a5127
No related branches found
No related tags found
No related merge requests found
......@@ -87,10 +87,10 @@ for i in range(nmodes):
angle = np.arctan(u[1] / u[0])
angle = 180.0 * angle / np.pi # convert to degrees
ell = mpl.patches.Ellipse(
mus[i],
v[0],
v[1],
180.0 + angle,
xy=mus[i],
width=v[0],
height=v[1],
angle=180.0 + angle,
edgecolor="black",
facecolor="none",
lw=2,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment