In the raphael.js library , paths are described using the syntax of the SVG path (for example, M98.36,214.208l2.186-1.093V210.2l-3.378,0.117l1.174,4.137L98.36,214.208z , which provides a very compact way to create a figure (especially if your figure is drawn using an external application such as Illustrator).
I'm interested in using the paper.js library (rather than based on SVG), but a first look at the documentation seems to show these paths being built in stages using object methods. This is a completely different approach ("building a path" and "describing a path", one might say), not very suitable for my needs.
So: is there a way to use SVG paths in paper.js? Or a similar solution "path description"?
Link:
source share