79227489

Date: 2024-11-26 16:20:20
Score: 0.5
Natty:
Report link

If canvas matrix is not set, and you transform every path by the matrix before drawing it, it works a little faster. At least when the number of paths is too big

path.transform(matrix)

On every path instead of:

canvas.setMatrix(matrix)

Or

canvas.concat(matrix)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: takluiper