Skip to content

Commit 67f86da

Browse files
authored
Merge pull request #80 from jimustafa/issue-28
update selection of interpolation methods
2 parents 7ca0fd6 + 3e46526 commit 67f86da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/interpolations.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
subplot_kw={'xticks': [], 'yticks': []})
1414
for ax, interp_method in zip(axs.flat, methods):
1515
ax.imshow(Z, interpolation=interp_method, cmap='viridis',
16-
extent=[0,9,0,9])
16+
extent=[0,9,0,9], rasterized=True)
1717
ax.text(4.5, 1, str(interp_method), weight="bold", color="white", size=12,
1818
transform=ax.transData, ha="center", va="center")
1919

0 commit comments

Comments
 (0)