Hello,
I just discovered the library and went over the documentation and examples. Overall, it looks amazing!
Here is my issue: I'm trying to create smooth lines (curves) while the user is drawing. So far (without paper.js), I'm smoothing them using `canvas.quadraticCurveTo()`. I'm doing that on `mouseUp` event.
Looking on paper.js examples, they follow the same logic - adding the points on `mouseMove` and then smoothing the path using `path.smooth` method on `mouseUp` event.
This is far from what the user would expect, that's why I'm trying to smooth them while the user is drawing. Is it possible with paper.js?
For the record, if you check the 'Bamboo Paper' application for a tablet for example (either for Android tablet or iPad), they create fantastic curves while the user is drawing. How is that possible?
Thanks,