def plot_circle(ax, x, y, color):
area = 380
circle = ax.scatter(x, y, s=area, c=color)
#edgewidth = 0
#edgecolor = "k" # black
#circle = ax.plot(x, y, "o", c=color, markersize=10)
#circle= mpatches.Circle((x, y), radius, fc=color, ec=edgecolor, lw=edgewidth)
#ax.add_patch(circle)
return circle
评论列表
文章目录