I would like to know, is there a way to build on the same path raphael.js?
I mean, i wont for example build a path using a for() cycle. I thought the the variable returned path = paper.path(…) could be used to increase the path using c.path(). But this throw an error since the method path() doesn’t exist…
The only solution i found now is to build a string and then pass it in one time to paper.path()
Is there a more elegant solution?
You can apply the attribute ‘path’ to update a path.
initialPath="M.......";