コード例 #1
0
 def fill_arc(self, gc, x, y, width, height, angle1, angle2, onerror=None):
     request.PolyFillArc(display=self.display,
                         onerror=onerror,
                         drawable=self.id,
                         gc=gc,
                         arcs=[(x, y, width, height, angle1, angle2)])
コード例 #2
0
 def poly_fill_arc(self, gc, arcs, onerror=None):
     request.PolyFillArc(display=self.display,
                         onerror=onerror,
                         drawable=self.id,
                         gc=gc,
                         arcs=arcs)