Skip to content

Version 0.3.0

Choose a tag to compare

@justvanrossum justvanrossum released this 27 Sep 18:01
  • Added clipPath(path)
  • Added path.pointInside(point)
  • Added path.bounds()
  • Added path.controlPointBounds()
  • Added path.reverse()
  • Added path.appendPath(other)
  • Added path.copy()
  • Added path.translate(x, y)
  • Added path.scale(x, y=None, center=(0, 0))
  • Added path.rotate(angle, center=(0, 0))
  • Added path.skew(x, y=0, center=(0, 0))
  • Added path.transform(transform, center=(0, 0))
  • Added path.arc(center, radius, startAngle, endAngle, clockwise)
  • Added path.arcTo(point1, point2, radius)
  • Added path.drawToPen(pen)
  • Added path.drawToPointPen(pen)
  • Added path.text(txt, ...)
  • Fixed bug when font() was not set