コード例 #1
0
ファイル: wx2.py プロジェクト: bgnori/bglib
 def draw_polygon(self, points, fill=None):
   points = [self.calc_mag(pt) for pt in points]
   draw = self.dc[1]
   draw.polygon(points, fill=fill)
コード例 #2
0
ファイル: PIL.py プロジェクト: bgnori/bglib
 def draw_polygon(self, points, fill=None):
     assert self.dc
     draw = self.dc[1]
     draw.polygon(points, fill=fill)