Exemplo n.º 1
0
 def rect(self, x, y, w, h):
     self.pathStr.append(PathElement.moveTo(x, y, self))
     self.pathStr.append(PathElement.lineTo(x + w, y, self))
     self.pathStr.append(PathElement.lineTo(x + w, y + h, self))
     self.pathStr.append(PathElement.lineTo(x, y + h, self))
     self.pathStr.append(PathElement.closePath())
     self.currentX = x
     self.currentY = y + h
Exemplo n.º 2
0
 def rect(self, x, y, w, h):
     self.pathStr.append(PathElement.moveTo(x, y, self))
     self.pathStr.append(PathElement.lineTo(x + w, y, self))
     self.pathStr.append(PathElement.lineTo(x + w, y + h, self))
     self.pathStr.append(PathElement.lineTo(x, y + h, self))
     self.pathStr.append(PathElement.closePath())
     self.currentX = x
     self.currentY = y + h
Exemplo n.º 3
0
 def moveTo(self, x, y):
     self.pathStr.append(PathElement.moveTo(x, y, self))
     self.currentX = x
     self.currentY = y
Exemplo n.º 4
0
 def moveTo(self, x, y):
     self.pathStr.append(PathElement.moveTo(x, y, self))
     self.currentX = x
     self.currentY = y