2011-11-11から1日間の記事一覧

matplotlib.patches.Circleのオプション引数fillが機能していない疑惑

下のコードでfill=Falseをしているにもかかわらず「青く塗られた円」が描かれる。 from matplotlib.collections import PatchCollection from pylab import * def draw(): clf() circles = [Circle(random(2), radius=random(), fill=False)] gca().add_coll…