craftdraw.py 121 B

123
  1. def polyline(pdf, vs):
  2. for i in range(len(vs) - 1):
  3. pdf.line(vs[i, 0], vs[i, 1], vs[i + 1, 0], vs[i + 1, 1])