def to_mpl_patch(self):
"""
This function ...
:return:
"""
points = []
for point in self.points: points.append([point.x, point.y])
points = np.array(points)
return mpl_Polygon(points, edgecolor='green', facecolor='none', lw=3, alpha=0.7)
# -----------------------------------------------------------------
评论列表
文章目录