Example #1
0
 def line_to(self, x, y):
     self.path.AddLineToPoint(x, y)
     BaseDc.move_to(self, x, y)
Example #2
0
 def move_to(self, x, y):
     self._move_x = x
     self._move_y = y
     if self.path:
         self.path.MoveToPoint(x, y)
     BaseDc.move_to(self, x, y)