Beispiel #1
0
 def drawCubicTo(self, bx, by, cx, cy, dx, dy):
     mingc.SWFShape_drawCubicTo(self.this, bx, by, cx, cy, dx, dy)
Beispiel #2
0
 def drawCurveTo(self, bx, by, cx, cy, dx=None, dy=None):
     if (dx != None):
         mingc.SWFShape_drawCubicTo(self.this, bx, by, cx, cy, dx, dy)
     else:
         mingc.SWFShape_drawCurveTo(self.this, bx, by, cx, cy)