For a metaball animation like this one: http://paperjs.org/examples/meta-balls/ I am creating a path in snap.svg that connects two circles. It looks like this:
<path d="M171 370 C207, 335, 493 335, 529 370 C493, 335, 493 264, 529 229 C493, 264, 207 264, 171 229 z"></path>
- What would be better: to redraw the path on each frame or to manipulate it?
- How can I manipulate the path? (i.e. move the points and control points around)
If it were more than two circles, I suppose redrawing would be the way to go.