文字通り、複数のポリゴンを可視化する関数です。 import matplotlib.pyplot as plt fig, ax = plt.subplots() plot_polygon_collection(ax, mesh1.geometry, edgecolor="#121212", facecolor="#333333") plot_polygon_collection の第1引数で描画する先(matplotlib のAxes)を指定します。そこで pyplot....