|
Something worth noting:
Keep in mind that for the time being, Paper.js refreshes the whole scene(redraws all elements), when something has changed (even a 1px movement on a small circle for example).
Thus even moderately complex scenes cause a big slowdown in performance.
SVG generally does not suffer from this, since a lot of drawing optimisations(e.g changing only the parts that have actually changed) are handled by the browser.
There are many attempts at making a drawing application with Paper.js - All suffer from this particular issue.
https://groups.google.com/forum/#!topic/paperjs/4u5JHd3mpw8
|